99 lines
1.8 KiB
Nix
99 lines
1.8 KiB
Nix
{ lib, ... }:
|
|
{
|
|
imports = [
|
|
./ceph.nix
|
|
./hardware-configuration.nix
|
|
./git.nix
|
|
./matrix.nix
|
|
./minio.nix
|
|
];
|
|
|
|
greg = {
|
|
tailscale.enable = true;
|
|
remote-builder.enable = true;
|
|
};
|
|
|
|
virtualisation.libvirtd = {
|
|
enable = true;
|
|
onBoot = "ignore"; # only restart VMs labeled 'autostart'
|
|
qemu.ovmf.enable = true;
|
|
};
|
|
|
|
services = {
|
|
openssh = {
|
|
enable = true;
|
|
settings.PermitRootLogin = "yes";
|
|
};
|
|
};
|
|
networking = {
|
|
hostName = "isaiah";
|
|
useDHCP = false;
|
|
defaultGateway = {
|
|
address = " 10.42.1.1";
|
|
interface = "enp38s0";
|
|
};
|
|
vlans = {
|
|
san = {
|
|
id = 616;
|
|
interface = "enp39s0";
|
|
};
|
|
};
|
|
interfaces = {
|
|
enp38s0 = {
|
|
ipv4.addresses = [
|
|
{
|
|
address = "10.42.1.6";
|
|
prefixLength = 16;
|
|
}
|
|
{
|
|
address = "10.42.100.1";
|
|
prefixLength = 16;
|
|
}
|
|
];
|
|
};
|
|
san = {
|
|
ipv4.addresses = [
|
|
{
|
|
address = "10.201.1.1";
|
|
prefixLength = 24;
|
|
}
|
|
];
|
|
};
|
|
};
|
|
nameservers = [ "10.42.1.5" ];
|
|
};
|
|
users = {
|
|
users = {
|
|
greg = {
|
|
extraGroups = [
|
|
"kvm"
|
|
"libvirtd"
|
|
"sudo"
|
|
"wheel"
|
|
];
|
|
isNormalUser = true;
|
|
};
|
|
};
|
|
};
|
|
system.stateVersion = lib.mkForce "24.05";
|
|
boot = {
|
|
extraModprobeConfig = "options kvm_amd nested=1";
|
|
supportedFilesystems = [ "ntfs" ];
|
|
loader = {
|
|
efi = {
|
|
canTouchEfiVariables = true;
|
|
efiSysMountPoint = "/boot";
|
|
};
|
|
systemd-boot = {
|
|
enable = true;
|
|
configurationLimit = 10;
|
|
};
|
|
};
|
|
binfmt.emulatedSystems = [ "aarch64-linux" ];
|
|
};
|
|
nixpkgs.config = {
|
|
allowUnfree = true;
|
|
permittedInsecurePackages = [ "nodejs-16.20.2" ];
|
|
};
|
|
}
|