configuration has been created (its so damn short too!!)
cheatsheet, kinda broken, kinda outdated
This commit is contained in:
@@ -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;
|
||||
};
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user