profiles: Change naming convention

This commit is contained in:
SebastianStork 2026-02-11 17:12:12 +01:00
parent b5ce26226e
commit acee101cbc
Signed by: SebastianStork
SSH key fingerprint: SHA256:tRrGdjYOwgHxpSc/wTOZQZEjxcb15P0tyXRsbAfd+2Q
8 changed files with 8 additions and 8 deletions

View file

@ -5,7 +5,7 @@
|> builtins.readDir
|> lib.attrNames
|> lib.map (name: {
name = "profile-${name |> lib.removeSuffix ".nix"}";
name = "${name |> lib.removeSuffix ".nix"}-profile";
value = "${self}/profiles/${name}";
})
|> lib.listToAttrs;