From 487fa7ea26bfb756bba0d5f60cb360b2e198ce00 Mon Sep 17 00:00:00 2001 From: Louis Bettens Date: Mon, 1 Mar 2021 18:03:46 +0100 Subject: [PATCH] hosts: fix #142 --- hosts/default.nix | 16 ++++------------ 1 file changed, 4 insertions(+), 12 deletions(-) diff --git a/hosts/default.nix b/hosts/default.nix index 864c466b..ec220caa 100644 --- a/hosts/default.nix +++ b/hosts/default.nix @@ -64,7 +64,10 @@ let nixos = { exact = true; - from = nodes.nixos.original; + from = { + id = "nixos"; + type = "indirect"; + }; to = { inherit (nixos) lastModified narHash rev; @@ -72,17 +75,6 @@ let type = "path"; }; }; - - override = { - exact = true; - from = nodes.override.original; - to = { - inherit (override) lastModified narHash rev; - - path = override.outPath; - type = "path"; - }; - }; }; system.configurationRevision = lib.mkIf (self ? rev) self.rev;