3a17b271f7
apperently I only needed to change like 5 lines?? I locked the hell in
39 lines
579 B
Nix
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;
|
|
};
|
|
}
|