Personal-use NixOS configuration
at main 11 lines 175 B view raw
1{ flakeRoot, ... }: 2 3{ 4 imports = [ 5 (flakeRoot + /config/server/databases/postgresql.nix) 6 ]; 7 8 services.postgresql = { 9 dataDir = "/mnt/apps/postgres/data"; 10 }; 11}