chore: nix fmt

This commit is contained in:
Harald Hoyer 2026-05-03 14:48:41 +02:00
parent 38767905af
commit f74928ce5f
21 changed files with 60 additions and 71 deletions

View file

@ -8,10 +8,12 @@
services.postgresql = {
enable = true;
ensureDatabases = [ "atticd" ];
ensureUsers = [{
name = "atticd";
ensureDBOwnership = true;
}];
ensureUsers = [
{
name = "atticd";
ensureDBOwnership = true;
}
];
};
environment.systemPackages = with pkgs; [ attic-client ];