32 lines
444 B
Nix
32 lines
444 B
Nix
{
|
|
...
|
|
}:
|
|
|
|
{
|
|
imports = [
|
|
./hardware-configuration.nix
|
|
../../modules/core
|
|
../../modules/networking
|
|
../../modules/virtualization
|
|
];
|
|
|
|
homelab = {
|
|
core = {
|
|
kernel = "lts";
|
|
};
|
|
|
|
virtualization = {
|
|
podman = {
|
|
enable = true;
|
|
packages.enable = true;
|
|
};
|
|
qemu = {
|
|
enable = true;
|
|
virtManager = false;
|
|
};
|
|
};
|
|
|
|
networking.tailscale.enable = true;
|
|
};
|
|
}
|