nixos/system/label.nix
Torjus Håkestad add7bbc626
All checks were successful
Run nix flake check / flake-check (push) Successful in 1m54s
Periodic flake update / flake-update (push) Successful in 1m40s
Add rev to label
2024-10-04 18:08:27 +02:00

20 lines
456 B
Nix

{
self,
...
}:
let
flakeRev = if (self ? shortRev) then self.shortRev else "dirty";
flakeMod = if (self ? lastModifiedDate) then self.lastModifiedDate else "";
flakeRevCount = if (self ? revCount) then builtins.toString self.revCount else "";
tagGit = "rev:" + flakeRev + ":" + flakeRevCount;
tagMod = "mod:" + flakeMod;
label = tagGit + "_" + tagMod;
in
{
system.nixos.tags = [
tagGit
tagMod
];
system.nixos.label = label;
}