configuration has been created (its so damn short too!!)

cheatsheet, kinda broken, kinda outdated
This commit is contained in:
2026-07-05 23:58:36 -05:00
parent 4e925f8a89
commit fcd15bb854
2 changed files with 257 additions and 4 deletions
+32 -4
View File
@@ -1,10 +1,38 @@
{
config,
lib,
pkgs,
...
}:
{
imports = [ ./hardware-configuration.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;
};
}