Skip to content

Commit

Permalink
d'oh
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamc committed Nov 10, 2023
1 parent ceca2cd commit 72febea
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ let
};
};

uninstaller = pkgs.callPackage ./pkgs/darwin-uninstaller { inherit makeDarwinSystem; };
uninstaller = pkgs.callPackage ./pkgs/darwin-uninstaller { makeDarwinSystem = module: makeDarwinSystem [ module ]; };

eval = makeDarwinSystem [
configuration
Expand All @@ -26,7 +26,7 @@ let
}
];

# The source code of this repo needed by the [un]installers.
# The source code of this repo needed by the installer.
nix-darwin = lib.cleanSource (
lib.cleanSourceWith {
# We explicitly specify a name here otherwise `cleanSource` will use the
Expand All @@ -39,6 +39,6 @@ let
in

eval // {
inherit uninstaller;
installer = pkgs.callPackage ./pkgs/darwin-installer { inherit nix-darwin; };
uninstaller = pkgs.callPackage ./pkgs/darwin-uninstaller { makeDarwinSystem = module: makeDarwinSystem [ module ]; };
}

0 comments on commit 72febea

Please sign in to comment.