mirror of
https://github.com/CHN-beta/nixos.git
synced 2026-01-11 16:49:22 +08:00
modules.system: show more concice info
This commit is contained in:
@@ -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;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user