nixos-config/nixos/hosts/suwako-vie0/default.nix

19 lines
258 B
Nix
Raw Normal View History

2024-12-13 01:56:43 +08:00
{
suites,
profiles,
2024-12-13 01:56:43 +08:00
mylib,
...
}:
{
imports =
suites.server
++ (with profiles; [
services.caddy
2024-12-15 01:20:55 +08:00
services.ntfy
services.postgresql
])
++ (mylib.path.scanPaths ./. "default.nix");
2024-12-13 01:56:43 +08:00
system.stateVersion = "24.11";
2024-12-13 01:56:43 +08:00
}