nixos-config/nixos/hosts/suwako-vie0/default.nix
2024-12-15 01:20:55 +08:00

19 lines
258 B
Nix

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