mirror of
https://github.com/LnL7/nix-darwin.git
synced 2025-03-31 04:04:45 +00:00
Merge pull request #1410 from Enzime/push-kklymxxksrnp
nix-tools: re‐add `nixPackage`
This commit is contained in:
commit
eaff8219d6
2 changed files with 3 additions and 1 deletions
|
@ -5,6 +5,7 @@ let
|
|||
inherit (config.system) profile;
|
||||
inherit (config.environment) systemPath;
|
||||
nixPath = lib.optionalString config.nix.enable (lib.concatStringsSep ":" config.nix.nixPath);
|
||||
nixPackage = if config.nix.enable then config.nix.package else null;
|
||||
};
|
||||
|
||||
darwin-uninstaller = pkgs.callPackage ../../pkgs/darwin-uninstaller { };
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
"/usr/sbin"
|
||||
"/sbin"
|
||||
]
|
||||
, nixPackage ? null
|
||||
, # This should be kept in sync with the default `nix.nixPath`.
|
||||
nixPath ? lib.concatStringsSep ":" [
|
||||
"darwin-config=/etc/nix-darwin/configuration.nix"
|
||||
|
@ -29,7 +30,7 @@
|
|||
}:
|
||||
|
||||
let
|
||||
extraPath = lib.makeBinPath [ coreutils jq git ];
|
||||
extraPath = lib.makeBinPath [ coreutils jq git nixPackage ];
|
||||
|
||||
writeProgram = name: env: src:
|
||||
substituteAll ({
|
||||
|
|
Loading…
Add table
Reference in a new issue