nixos config
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

style: formatting

+17 -21
+1 -1
global/overlays/default.nix
··· 1 - _: [] 1 + _: [ ] 2 2 # inputs: [ 3 3 # # we can probably live without an overlay? 4 4 # # inputs.mystia.overlays.default
+16 -20
systems/koumakan/services/databases/postgresql.nix
··· 19 19 host all all ::1/128 scram-sha-256 20 20 ''; 21 21 22 - settings = 23 - let 24 - credsDir = "/run/credentials/postgresql.service"; 25 - in 26 - { 27 - listen_addresses = pkgs.lib.mkForce "*"; 28 - max_connections = 200; 29 - password_encryption = "scram-sha-256"; 22 + settings = { 23 + listen_addresses = pkgs.lib.mkForce "*"; 24 + max_connections = 200; 25 + password_encryption = "scram-sha-256"; 30 26 31 - log_line_prefix = "%m [%p] %h "; 32 - # ssl = "on"; 33 - # ssl_cert_file = "${credsDir}/cert.pem"; 34 - # ssl_key_file = "${credsDir}/key.pem"; 27 + log_line_prefix = "%m [%p] %h "; 28 + # ssl = "on"; 29 + # ssl_cert_file = "${credsDir}/cert.pem"; 30 + # ssl_key_file = "${credsDir}/key.pem"; 35 31 36 - log_hostname = true; 37 - datestyle = "iso, dmy"; 38 - log_timezone = "Asia/Hong_Kong"; 39 - timezone = "Asia/Hong_Kong"; 40 - default_text_search_config = "pg_catalog.english"; 32 + log_hostname = true; 33 + datestyle = "iso, dmy"; 34 + log_timezone = "Asia/Hong_Kong"; 35 + timezone = "Asia/Hong_Kong"; 36 + default_text_search_config = "pg_catalog.english"; 41 37 42 - max_wal_size = "2GB"; 43 - min_wal_size = "80MB"; 44 - }; 38 + max_wal_size = "2GB"; 39 + min_wal_size = "80MB"; 40 + }; 45 41 }; 46 42 47 43 users.users.postgres.useDefaultShell = lib.mkForce false;