Files
nixos/hosts/isaiah/default.nix
T

117 lines
2.1 KiB
Nix

{
lib,
pkgs,
top,
...
}:
{
imports = [
./hardware-configuration.nix
./git.nix
top.proxmox.nixosModules.proxmox-ve
];
boot = {
binfmt.emulatedSystems = [ "aarch64-linux" ];
extraModprobeConfig = "options kvm_amd nested=1";
kernel.sysctl = {
"net.bridge.bridge-nf-call-ip6tables" = 0;
"net.bridge.bridge-nf-call-iptables" = 0;
"net.bridge.bridge-nf-call-arptables" = 0;
};
loader = {
efi = {
canTouchEfiVariables = true;
efiSysMountPoint = "/boot";
};
systemd-boot = {
enable = true;
configurationLimit = 10;
};
};
supportedFilesystems = [ "ntfs" ];
};
environment.systemPackages = with pkgs; [
zstd
];
greg = {
tailscale.enable = true;
remote-builder.enable = true;
};
fileSystems = {
"/media/proxmox" = {
device = "10.42.1.4:/volume1/proxmox";
fsType = "nfs";
options = [ "noatime" ];
};
};
networking = {
hostName = "isaiah";
useDHCP = false;
bridges.br0 = {
interfaces = [ "enp38s0" ];
};
defaultGateway = {
address = " 10.42.1.1";
interface = "br0";
};
interfaces = {
br0 = {
ipv4.addresses = [
{
address = "10.42.1.6";
prefixLength = 16;
}
];
};
};
nameservers = [ "10.42.1.5" ];
firewall.checkReversePath = lib.mkForce false;
};
nixpkgs = {
config = {
allowUnfree = true;
permittedInsecurePackages = [ "nodejs-16.20.2" ];
};
};
services = {
openssh = {
enable = true;
settings.PermitRootLogin = "yes";
};
proxmox-ve.enable = true;
};
system.stateVersion = lib.mkForce "24.05";
users = {
users = {
greg = {
extraGroups = [
"kvm"
"libvirtd"
"sudo"
"wheel"
];
isNormalUser = true;
};
};
};
virtualisation.libvirtd = {
enable = true;
allowedBridges = [
"br0"
"virbr0"
];
onBoot = "ignore"; # only restart VMs labeled 'autostart'
qemu.ovmf.enable = true;
};
}