nixos-config/nixos/hosts/kanako-hkg0/default.nix

17 lines
212 B
Nix

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