Files
homelab/hosts/test/configuration.nix
2026-07-07 01:14:38 -05:00

36 lines
485 B
Nix

{
...
}:
{
imports = [
./hardware-configuration.nix
# Modules
../../modules/core
../../modules/networking
../../modules/virtualization
];
homelab = {
core = {
hostname = "test";
kernel = "lts";
};
virtualization = {
podman = {
enable = true;
packages.enable = true;
};
qemu = {
enable = true;
virtManager = false;
};
};
networking.tailscale.enable = true;
};
}