modules.system: show more concice info

This commit is contained in:
2025-12-08 17:09:38 +08:00
parent 01098e9c83
commit df52b19a1e

View File

@@ -58,7 +58,16 @@ inputs:
{
stateVersion = "25.05";
configurationRevision = inputs.topInputs.self.rev or "dirty";
nixos = { versionSuffix = inputs.lib.mkForce ""; tags = [ inputs.topInputs.self.config.branch ]; };
nixos =
{
versionSuffix = inputs.lib.mkForce "";
tags = let inherit (inputs.topInputs) self; in
[
self.config.branch
(builtins.substring 2 6 self.lastModifiedDate)
(builtins.substring 0 6 self.rev or "dirty")
];
};
};
chaotic.nyx.cache.enable = false;
};