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

17 lines
219 B
Nix

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