nixos/hosts/homelab/default.nix
2025-12-13 21:41:52 +01:00

17 lines
278 B
Nix

{
config = {
fireproof = {
hostname = "homelab";
username = "nickolaj";
dev.enable = true;
homelab.enable = true;
};
facter.reportPath = ./facter.json;
};
imports = [
./configuration.nix
./disks.nix
./networking.nix
];
}