From b124bf26a8c57e1dfbfc4fa260c10f5e09ce2927 Mon Sep 17 00:00:00 2001 From: kat witch Date: Thu, 13 May 2021 17:14:45 +0100 Subject: [PATCH] nixos: Build fix --- nixos.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos.nix b/nixos.nix index 9b12f3f8..e1f3a803 100644 --- a/nixos.nix +++ b/nixos.nix @@ -7,7 +7,7 @@ # trusted check ++ lib.optional (builtins.pathExists (./trusted/hosts + "/${hostName}/nixos")) (import (./trusted/hosts + "/${hostName}/nixos")) # trusted default check - ++ lib.optional (builtins.pathExists ./trusted) (import ./trusted/hosts) + ++ lib.optional (builtins.pathExists ./trusted/hosts) (import ./trusted/hosts) # trusted profile check ++ lib.optional (builtins.pathExists ./trusted/profile) (import ./trusted/profile);