chore: Expand single item lists and attribute sets

These aren't collapsed by nix fmt anymore.
This commit is contained in:
Donovan Glover
2024-08-27 10:58:05 -04:00
parent ed9a253fdf
commit 83a82ab655
7 changed files with 32 additions and 10 deletions

View File

@ -263,8 +263,14 @@ in
postgresql = mkIf postgres {
enable = true;
ensureUsers = singleton { name = username; };
ensureDatabases = [ username ];
ensureUsers = singleton {
name = username;
};
ensureDatabases = [
username
];
};
openssh = {