fix enable toggle

This commit is contained in:
Noa Aarts 2025-09-09 08:32:00 +02:00
parent 506c560315
commit d5d6482c1d
Signed by: noa
GPG key ID: 1850932741EFF672
2 changed files with 11 additions and 10 deletions

View file

@ -407,7 +407,8 @@
] ]
++ [ ++ [
(lib.mkIf (import ./toggles.nix).enableFlurry "flurry.itepastra.nl") (lib.mkIf (import ./toggles.nix).enableFlurry "flurry.itepastra.nl")
]; ]
++ (lib.mkIf (import ./toggles.nix).enableQubitQuilt "geenit.nl");
}; };
}; };

View file

@ -68,6 +68,15 @@ in
}; };
}; };
"calendar.itepastra.nl" = proxy "itepastra.nl" "http://[::1]:29341";
# home-assistant proxy
"home.itepastra.nl" = proxy "itepastra.nl" "http://[::1]:8123";
})
(lib.mkIf (import ./toggles.nix).enableFlurry {
"flurry.itepastra.nl" = proxy "itepastra.nl" "http://127.0.0.1:3000";
})
(lib.mkif (import ./toggles.nix).enableQubitQuilt {
"geenit.nl" = { "geenit.nl" = {
forceSSL = true; forceSSL = true;
enableACME = true; enableACME = true;
@ -76,15 +85,6 @@ in
root = inputs.qubit-quilt.packages."x86_64-linux".default; root = inputs.qubit-quilt.packages."x86_64-linux".default;
}; };
}; };
"calendar.itepastra.nl" = proxy "itepastra.nl" "http://[::1]:29341";
# home-assistant proxy
"home.itepastra.nl" = proxy "itepastra.nl" "http://[::1]:8123";
})
(lib.mkIf (import ./toggles.nix).enableFlurry {
"flurry.itepastra.nl" = proxy "itepastra.nl" "http://127.0.0.1:3000";
}) })
]; ];
}; };