diff options
author | Alan Pearce | 2024-04-28 23:13:58 +0200 |
---|---|---|
committer | Alan Pearce | 2024-05-18 12:17:12 +0200 |
commit | 9fdde0d36aa52e10b0d587aea37b65bc14adfc85 (patch) | |
tree | 895d3d0c8ec0db26640c64c509cbd62f8d82b270 /system/settings | |
parent | 946cf87360e790a6f0c873a8eca41ad22b569587 (diff) | |
download | nixfiles-9fdde0d36aa52e10b0d587aea37b65bc14adfc85.tar.lz nixfiles-9fdde0d36aa52e10b0d587aea37b65bc14adfc85.tar.zst nixfiles-9fdde0d36aa52e10b0d587aea37b65bc14adfc85.zip |
system/base: remove configurationRevision setting
Diffstat (limited to 'system/settings')
-rw-r--r-- | system/settings/base.nix | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/system/settings/base.nix b/system/settings/base.nix index 5eee9088..81dab9a1 100644 --- a/system/settings/base.nix +++ b/system/settings/base.nix @@ -1,14 +1,9 @@ { config , pkgs , lib -, inputs , ... }: -let - inherit (inputs) self; -in { boot.loader.timeout = lib.mkDefault 1; services.irqbalance.enable = true; - system.configurationRevision = toString (self.rev or self.dirtyRev or self.lastModified or "unknown"); } |