Files
nixos/hosts/homelab/configuration.nix
T
aloslider 6a3ff12527 Restructure
- Restructure
- Add sops+age
2026-04-10 23:49:32 +03:00

30 lines
519 B
Nix

{
config,
lib,
...
}:
{
imports = lib.flatten [
./boot.nix
./network.nix
./hardware-configuration.nix
(map lib.custom.relativeToRoot (
[
"hosts/common/core"
"hosts/common/users/benq.nix"
"home/benq/homelab.nix"
]
++ (map (f: "hosts/common/optional/${f}") [
"bbr.nix"
"docker.nix"
"endlessh.nix"
"fail2ban.nix"
"openssh.nix"
])
))
];
disko.cfg.mainDevice = "/dev/vda";
system.stateVersion = "26.05";
}