diff options
-rw-r--r-- | ops/nixos/default.nix | 6 | ||||
-rw-r--r-- | users/tazjin/nixos/default.nix | 2 |
2 files changed, 7 insertions, 1 deletions
diff --git a/ops/nixos/default.nix b/ops/nixos/default.nix index 40431a79afaf..407e667f42ba 100644 --- a/ops/nixos/default.nix +++ b/ops/nixos/default.nix @@ -42,4 +42,10 @@ rec { nix-env -p /nix/var/nix/profiles/system --set $system $system/bin/switch-to-configuration switch ''; + + # Systems that should be built in CI + # + # TODO(tazjin): Refactor the whole systems setup, it's a bit + # inconsistent at the moment. + whitbySystem = (nixosFor whitby).system // { __readTree = true; }; } diff --git a/users/tazjin/nixos/default.nix b/users/tazjin/nixos/default.nix index 9747f5c00cc7..11f2eef13043 100644 --- a/users/tazjin/nixos/default.nix +++ b/users/tazjin/nixos/default.nix @@ -8,7 +8,7 @@ let configuration = lib.fix(config: foldl' lib.recursiveUpdate {} (map (c: c config) configs) ); - }).system; + }).system // { __readTree = true; }; caseFor = hostname: '' ${hostname}) |