base: store nixfiles repo revision in system config
Alan Pearce alan@alanpearce.eu
Sun, 14 Apr 2024 15:46:31 +0200
1 files changed, 7 insertions(+), 1 deletions(-)
jump to
M system/settings/base.nix → system/settings/base.nix
@@ -1,8 +1,14 @@ { 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"); }