diff options
author | William Carroll <wpcarro@gmail.com> | 2020-03-07T15·07+0000 |
---|---|---|
committer | William Carroll <wpcarro@gmail.com> | 2020-03-07T15·07+0000 |
commit | 431b4980e4e8ff98d916d1356c4f531b0adf6db9 (patch) | |
tree | 7d53833b91beb96bb7f708301116b7ed7912ecbf /nixos/socrates/default.nix | |
parent | b04b1dafd2834570c53dc99eed07a309071ed40f (diff) |
Remove fix-point recursion from socrates/default.nix
The fixed-point recursion isn't necessary.
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? -}) +} |