all repos — nixfiles @ 8917992ad14aca2250b3e38367d46213534cc93f

System and user configuration, managed by nix and home-manager

base: store nixfiles repo revision in system config

Alan Pearce
commit

8917992ad14aca2250b3e38367d46213534cc93f

parent

1f8592de6efd2f059f422852efcc9c0429f4292f

1 file changed, 7 insertions(+), 1 deletion(-)

jump to
M system/settings/base.nixsystem/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"); }