Format using alejandra
All checks were successful
/ Build Nix targets (push) Successful in 3m36s

This commit is contained in:
Théo Barnouin 2025-01-23 14:13:19 +01:00
parent 1a25b198ef
commit 781ce2d5e9
24 changed files with 610 additions and 505 deletions

View file

@ -1,8 +1,11 @@
{ lib, config, pkgs, ... }:
let
cfg = config.services.vm_postgresql;
in
{
lib,
config,
pkgs,
...
}: let
cfg = config.services.vm_postgresql;
in {
options.services.vm_postgresql = {
enable = lib.mkEnableOption "Enable minimal config";
};
@ -44,6 +47,6 @@ in
alter user nextcloud with password 'password';
'';
};
networking.firewall.allowedTCPPorts = [ 5432 ];
networking.firewall.allowedTCPPorts = [5432];
};
}