mirror of
https://github.com/nix-community/home-manager
synced 2024-11-18 17:19:45 +01:00
home-manager: fix nixos-option fallback
This commit is contained in:
parent
ae636c09f4
commit
9ed7a73ae2
1 changed files with 2 additions and 2 deletions
|
@ -11,8 +11,8 @@ let
|
||||||
|
|
||||||
pathStr = if path == null then "" else path;
|
pathStr = if path == null then "" else path;
|
||||||
|
|
||||||
nixos-option = pkgs.nixos-option or callPackage
|
nixos-option = pkgs.nixos-option or (callPackage
|
||||||
(pkgs.path + "/nixos/modules/installer/tools/nixos-option") { };
|
(pkgs.path + "/nixos/modules/installer/tools/nixos-option") { });
|
||||||
|
|
||||||
in runCommand "home-manager" {
|
in runCommand "home-manager" {
|
||||||
preferLocalBuild = true;
|
preferLocalBuild = true;
|
||||||
|
|
Loading…
Reference in a new issue