diff options
Diffstat (limited to 'cyberbox/configuration.nix')
-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; |