aboutsummaryrefslogtreecommitdiff
path: root/home-manager
diff options
context:
space:
mode:
authorRobert Helgesson <robert@rycee.net>2018-07-31 21:05:36 +0200
committerRobert Helgesson <robert@rycee.net>2018-07-31 21:16:36 +0200
commit99c900946dbbaf5ba1fd3b1c1fe83b18fb66c84e (patch)
tree8d68cbca2c8b84e5c458c1187c659f2199e47997 /home-manager
parent39213a18470b0b6e6a7660d758fc9e3a2f539883 (diff)
Avoid substitution for some derivations
In particular, don't bother attempting to do substitution of the home files and home generation derivations since these rarely, if ever, could be substituted. Fixes #330
Diffstat (limited to 'home-manager')
-rw-r--r--home-manager/install.nix2
1 files changed, 2 insertions, 0 deletions
diff --git a/home-manager/install.nix b/home-manager/install.nix
index c6d3aa4e4ca..be9f17df067 100644
--- a/home-manager/install.nix
+++ b/home-manager/install.nix
@@ -4,6 +4,8 @@ pkgs.runCommand
"home-manager-install"
{
propagatedBuildInputs = [ home-manager ];
+ preferLocalBuild = true;
+ allowSubstitutes = false;
shellHook = ''
echo
echo "Creating initial Home Manager generation..."