nixos-config/nixos/hosts/suwako-vie0/default.nix

18 lines
238 B
Nix
Raw Normal View History

2024-12-13 01:56:43 +08:00
{
suites,
profiles,
2024-12-13 01:56:43 +08:00
mylib,
...
}:
{
imports =
suites.server
++ (with profiles; [
services.caddy
services.postgresql
])
++ (mylib.path.scanPaths ./. "default.nix");
2024-12-13 01:56:43 +08:00
system.stateVersion = "24.11";
2024-12-13 01:56:43 +08:00
}