nixos-config/nixos/hosts/reisen-nrt0/default.nix
2024-12-15 22:34:29 +08:00

17 lines
221 B
Nix

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