hosts/suwako-vie0: enable caddy and postgresql

This commit is contained in:
Lu Wang 2024-12-14 23:38:41 +08:00
parent f87f518779
commit 0bf3fa4a50
Signed by: rebmit
SSH key fingerprint: SHA256:3px8QV1zEerIrEWHaqtH5rR9kjetyRST5EipOPrd+bU

View file

@ -1,10 +1,17 @@
{ {
suites, suites,
profiles,
mylib, mylib,
... ...
}: }:
{ {
imports = suites.server ++ (mylib.path.scanPaths ./. "default.nix"); imports =
suites.server
++ (with profiles; [
services.caddy
services.postgresql
])
++ (mylib.path.scanPaths ./. "default.nix");
system.stateVersion = "24.05"; system.stateVersion = "24.11";
} }