aboutsummaryrefslogtreecommitdiff
path: root/systems/zoldene
diff options
context:
space:
mode:
Diffstat (limited to 'systems/zoldene')
-rw-r--r--systems/zoldene/base.nix10
-rw-r--r--systems/zoldene/flake.lock12
-rw-r--r--systems/zoldene/logging.nix2
3 files changed, 17 insertions, 7 deletions
diff --git a/systems/zoldene/base.nix b/systems/zoldene/base.nix
index 2c0a461..2751d63 100644
--- a/systems/zoldene/base.nix
+++ b/systems/zoldene/base.nix
@@ -126,5 +126,15 @@ in
126 # ssh-keyscan zoldene | nix-shell -p ssh-to-age --run ssh-to-age 126 # ssh-keyscan zoldene | nix-shell -p ssh-to-age --run ssh-to-age
127 secrets.ageKeys = [ "age1rqr7qdpjm8fy9nf3x07fa824v87n40g0ljrgdysuayuklnvhcynq4c8en8" ]; 127 secrets.ageKeys = [ "age1rqr7qdpjm8fy9nf3x07fa824v87n40g0ljrgdysuayuklnvhcynq4c8en8" ];
128 128
129 system.activationScripts.wrappers = {
130 text = ''
131 # wrappers was migrated to systemd, which happens before activation
132 '';
133 };
129 134
135 nixpkgs.overlays = [
136 (self: super: {
137 postgresql_system = self.postgresql_16;
138 })
139 ];
130} 140}
diff --git a/systems/zoldene/flake.lock b/systems/zoldene/flake.lock
index 1baa6c1..8510f56 100644
--- a/systems/zoldene/flake.lock
+++ b/systems/zoldene/flake.lock
@@ -193,7 +193,7 @@
193 }, 193 },
194 "locked": { 194 "locked": {
195 "lastModified": 1, 195 "lastModified": 1,
196 "narHash": "sha256-LcNrlKExlzjo4XK3+80rONNOvx7BxUYh46rbHPTZ0W4=", 196 "narHash": "sha256-LB6s98L2OEDG6p79qlbp0OeMJ0t89qGaIjXSQyaLjpk=",
197 "path": "../../mypackages", 197 "path": "../../mypackages",
198 "type": "path" 198 "type": "path"
199 }, 199 },
@@ -387,11 +387,11 @@
387 }, 387 },
388 "nixpkgs_5": { 388 "nixpkgs_5": {
389 "locked": { 389 "locked": {
390 "lastModified": 1693158576, 390 "lastModified": 1708475490,
391 "narHash": "sha256-aRTTXkYvhXosGx535iAFUaoFboUrZSYb1Ooih/auGp0=", 391 "narHash": "sha256-g1v0TsWBQPX97ziznfJdWhgMyMGtoBFs102xSYO4syU=",
392 "owner": "nixos", 392 "owner": "NixOS",
393 "repo": "nixpkgs", 393 "repo": "nixpkgs",
394 "rev": "a999c1cc0c9eb2095729d5aa03e0d8f7ed256780", 394 "rev": "0e74ca98a74bc7270d28838369593635a5db3260",
395 "type": "github" 395 "type": "github"
396 }, 396 },
397 "original": { 397 "original": {
@@ -455,7 +455,7 @@
455 }, 455 },
456 "locked": { 456 "locked": {
457 "lastModified": 1, 457 "lastModified": 1,
458 "narHash": "sha256-kYdljzySZwf9miB2mMHz8SsQHjVTkwuQ2oYNkijYyII=", 458 "narHash": "sha256-a+XNRoZjx2k5uyAFCF/4OKxF3XUwxf+ECZJvnIphrEs=",
459 "path": "../../flakes/private/system", 459 "path": "../../flakes/private/system",
460 "type": "path" 460 "type": "path"
461 }, 461 },
diff --git a/systems/zoldene/logging.nix b/systems/zoldene/logging.nix
index 09ee104..b5f1e16 100644
--- a/systems/zoldene/logging.nix
+++ b/systems/zoldene/logging.nix
@@ -117,7 +117,7 @@ in
117 ensureUsers = [ 117 ensureUsers = [
118 { 118 {
119 name = "fluentbit"; 119 name = "fluentbit";
120 ensurePermissions."DATABASE \"fluentbit\"" = "ALL PRIVILEGES"; 120 ensureDBOwnership = true;
121 } 121 }
122 ]; 122 ];
123 }; 123 };