nixos-config/nixos/hosts/reisen-sin0/default.nix

18 lines
242 B
Nix
Raw Normal View History

2024-12-17 22:08:23 +08:00
{
suites,
profiles,
mylib,
...
}:
{
imports =
suites.server
++ (with profiles; [
2024-12-21 20:11:58 +08:00
services.caddy
2024-12-17 22:08:23 +08:00
services.knot.secondary
])
++ (mylib.path.scanPaths ./. "default.nix");
system.stateVersion = "24.11";
}