commit 8514595a5bc1b90b8ffc0c5024a809755ee005f1
parent 11b95d6c7ea12f15c6769750ae5872594793aa44
Author: Vincent Demeester <vincent@sbr.pm>
Date: Mon, 25 May 2020 17:49:40 +0200
systems: try to fix build 💦
Signed-off-by: Vincent Demeester <vincent@sbr.pm>
Diffstat:
2 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/systems/hokkaido.nix b/systems/hokkaido.nix
@@ -5,6 +5,7 @@ let
{}
'';
inCi = builtins.pathExists /home/build;
+ enableHome = !inCi;
in
{
imports = [
@@ -14,7 +15,7 @@ in
../hardware/thinkpad-x220.nix
];
- profiles.home = !inCi;
+ profiles.home = enableHome;
networking = {
hostName = "hokkaido";
diff --git a/systems/wakasu.nix b/systems/wakasu.nix
@@ -4,6 +4,8 @@ let
# assert builtins.trace "This is a dummy config, use switch!" false;
{}
'';
+ inCi = builtins.pathExists /home/build;
+ enableHome = !inCi;
in
{
imports = [
@@ -15,7 +17,7 @@ in
../machines/home.nixos.nix
];
- profiles.home = !inCi;
+ profiles.home = enableHome;
networking = {
hostName = "wakasu";