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

18 lines
242 B
Nix
Raw Permalink Normal View History

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