diff options
author | stuebinm | 2022-01-20 20:08:06 +0100 |
---|---|---|
committer | stuebinm | 2022-01-20 20:08:55 +0100 |
commit | bd1d868f336a5a2ac9020a4658abebd80bd11d12 (patch) | |
tree | bbc198954d4ca75ce2399708c31823f71b3cd1dc | |
parent | d74de5d10e103186cf58553570ee1bcbc78a383b (diff) |
cyberbox: local postgres for testing purposes
Diffstat (limited to '')
-rw-r--r-- | cyberbox/configuration.nix | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/cyberbox/configuration.nix b/cyberbox/configuration.nix index 47ffaad..4a372f6 100644 --- a/cyberbox/configuration.nix +++ b/cyberbox/configuration.nix @@ -11,6 +11,12 @@ programs.light.enable = true; programs.slock.enable = true; + services.postgresql.enable = true; + services.postgresql.package = pkgs.postgresql_11; + services.postgresql.authentication = '' + local all all trust + host all all 127.0.0.1/32 trust + ''; # Use the GRUB 2 boot loader. boot.loader.grub.enable = true; @@ -40,6 +46,8 @@ ''}"; }; + + # Enable sound. sound.enable = true; hardware.pulseaudio.enable = true; |