about summary refs log tree commit diff
path: root/nixos
diff options
context:
space:
mode:
authorWilliam Carroll <wpcarro@gmail.com>2020-03-07T15·07+0000
committerWilliam Carroll <wpcarro@gmail.com>2020-03-07T15·07+0000
commit431b4980e4e8ff98d916d1356c4f531b0adf6db9 (patch)
tree7d53833b91beb96bb7f708301116b7ed7912ecbf /nixos
parentb04b1dafd2834570c53dc99eed07a309071ed40f (diff)
Remove fix-point recursion from socrates/default.nix
The fixed-point recursion isn't necessary.
Diffstat (limited to 'nixos')
-rw-r--r--nixos/socrates/default.nix4
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?
-})
+}