Files
homelab/hosts/test/configuration.nix
T
pure_sagacity 3a17b271f7 debugging...
apperently I only needed to change like 5 lines?? I locked the hell in
2026-07-06 00:09:24 -05:00

39 lines
579 B
Nix

{
...
}:
{
imports = [
#./hardware-configuration.nix
../../modules/core
../../modules/networking
../../modules/virtualization
];
homelab = {
core = {
kernel = "lts";
bootloader = {
type = "grub";
grub = {
enable = true;
device = "nodev";
};
};
};
virtualization = {
podman = {
enable = true;
packages.enable = true;
};
qemu = {
enable = true;
virtManager = false;
};
};
networking.tailscale.enable = true;
};
}