mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-08-09 23:07:46 +02:00
chore: Expand single item lists and attribute sets
These aren't collapsed by nix fmt anymore.
This commit is contained in:
@ -263,8 +263,14 @@ in
|
||||
|
||||
postgresql = mkIf postgres {
|
||||
enable = true;
|
||||
ensureUsers = singleton { name = username; };
|
||||
ensureDatabases = [ username ];
|
||||
|
||||
ensureUsers = singleton {
|
||||
name = username;
|
||||
};
|
||||
|
||||
ensureDatabases = [
|
||||
username
|
||||
];
|
||||
};
|
||||
|
||||
openssh = {
|
||||
|
Reference in New Issue
Block a user