fcd15bb854
cheatsheet, kinda broken, kinda outdated
39 lines
578 B
Nix
39 lines
578 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;
|
|
};
|
|
}
|