daily checkpoint

This commit is contained in:
Chris Kruining 2026-04-01 16:09:51 +02:00
parent cc86b0a815
commit 2ffece26f2
No known key found for this signature in database
GPG key ID: EB894A3560CCCAD2
15 changed files with 451 additions and 63 deletions

View file

@ -538,7 +538,7 @@ in
in
mkIf cfg.enable {
sneeuwvlok.services = {
persistance.postgresql.enable = true;
persistence.postgresql.enable = true;
networking.caddy = {
hosts = {

View file

@ -22,7 +22,7 @@ in {
config = mkIf cfg.enable {
sneeuwvlok.services = {
persistance.postgresql.enable = true;
persistence.postgresql.enable = true;
# virtualisation.podman.enable = true;
networking.caddy = {

View file

@ -25,7 +25,7 @@ in {
config = mkIf cfg.enable {
sneeuwvlok.services = {
persistance.postgresql.enable = true;
persistence.postgresql.enable = true;
virtualisation.podman.enable = true;
networking.caddy = {

View file

@ -6,9 +6,9 @@
}: let
inherit (lib) mkIf mkEnableOption;
cfg = config.sneeuwvlok.services.persistance.postgresql;
cfg = config.sneeuwvlok.services.persistence.postgresql;
in {
options.sneeuwvlok.services.persistance.postgresql = {
options.sneeuwvlok.services.persistence.postgresql = {
enable = mkEnableOption "Postgresql";
};