nixos-config/nixos/hosts/suwako-vie0/default.nix
2024-12-15 02:52:27 +08:00

20 lines
282 B
Nix

{
suites,
profiles,
mylib,
...
}:
{
imports =
suites.server
++ (with profiles; [
services.caddy
services.keycloak
services.ntfy
services.postgresql
])
++ (mylib.path.scanPaths ./. "default.nix");
system.stateVersion = "24.11";
}