summaryrefslogtreecommitdiff
path: root/default.nix
diff options
context:
space:
mode:
authorGraham Christensen <graham@grahamc.com>2023-11-10 12:53:56 -0500
committerMichael Hoang <enzime@users.noreply.github.com>2023-11-16 17:47:24 +1100
commit09284ab00b2bf86b0d33bae8cf8b1a999bb512d9 (patch)
tree640ed28ec8e0b0042524d9df7dfae44d72493210 /default.nix
parente67f2bf515343da378c3f82f098df8ca01bccc5f (diff)
Install darwin-uninstall by default, which includes the 'empty' config it switches to
Co-Authored-By: Michael Hoang <enzime@users.noreply.github.com>
Diffstat (limited to 'default.nix')
-rw-r--r--default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/default.nix b/default.nix
index 7c7e06b..c93b478 100644
--- a/default.nix
+++ b/default.nix
@@ -16,7 +16,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
@@ -30,5 +30,5 @@ in
eval // {
installer = pkgs.callPackage ./pkgs/darwin-installer { inherit nix-darwin; };
- uninstaller = pkgs.callPackage ./pkgs/darwin-uninstaller { inherit nix-darwin; };
+ uninstaller = pkgs.callPackage ./pkgs/darwin-uninstaller { };
}