From 431b4980e4e8ff98d916d1356c4f531b0adf6db9 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Sat, 7 Mar 2020 15:07:32 +0000 Subject: Remove fix-point recursion from socrates/default.nix The fixed-point recursion isn't necessary. --- nixos/socrates/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'nixos') 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? -}) +} -- cgit 1.4.1