all repos — nixfiles @ 8917992ad14aca2250b3e38367d46213534cc93f

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

base: store nixfiles repo revision in system config
Alan Pearce alan@alanpearce.eu
Sun, 14 Apr 2024 15:46:31 +0200
commit

8917992ad14aca2250b3e38367d46213534cc93f

parent

1f8592de6efd2f059f422852efcc9c0429f4292f

1 files changed, 7 insertions(+), 1 deletions(-)

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");
 }