diff options
Diffstat (limited to 'nixos/socrates/default.nix')
-rw-r--r-- | nixos/socrates/default.nix | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/socrates/default.nix b/nixos/socrates/default.nix index 76654944b3d2..ef2b6d53bd48 100644 --- a/nixos/socrates/default.nix +++ b/nixos/socrates/default.nix @@ -9,7 +9,7 @@ let trimNewline = x: pkgs.lib.removeSuffix "\n" x; readSecret = x: trimNewline (builtins.readFile ("/etc/secrets/" + x)); -in pkgs.lib.fix(self: { +in { imports = [ ./hardware.nix ]; # Use the systemd-boot EFI boot loader. @@ -154,4 +154,4 @@ in pkgs.lib.fix(self: { }; system.stateVersion = "20.09"; # Did you read the comment? -}) +} |