feat: Add yivo

This commit is contained in:
Kyle Brown 2024-10-13 15:26:07 -07:00
parent 26f5f3f200
commit 3cb15bdeef
4 changed files with 82 additions and 0 deletions

View file

@ -26,5 +26,6 @@
192.168.194.241 grapheneos.far
192.168.194.182 trueremote.far
192.168.194.242 truehome.far
192,168.194.155 yivo.far
'';
}

View file

@ -134,6 +134,10 @@
scruffy = mkHeadlessNixos [
./hosts/scruffy
];
# Xeon VM
yivo = mkHeadlessNixos [
./hosts/yivo
];
};
darwinConfigurations = {

34
hosts/yivo/default.nix Normal file
View file

@ -0,0 +1,34 @@
{
config,
lib,
pkgs,
inputs,
outputs,
home-manager,
...
}: {
imports = [
# Include the results of the hardware scan.
./hardware-configuration.nix
../../common/nixos/common.nix
../../common/networking/zerotier.nix
../../common/nixos/docker.nix
];
# Bootloader.
boot.loader.grub.enable = true;
boot.loader.grub.device = "/dev/sda";
boot.loader.grub.useOSProber = true;
networking.hostName = "yivo";
# Enable networking
networking.networkmanager.enable = true;
# Enable the OpenSSH daemon.
services.openssh.enable = true;
services.earlyoom.enable = true;
# Latest stable kernel
boot.kernelPackages = pkgs.linuxPackages_latest;
}

View file

@ -0,0 +1,43 @@
{
config,
lib,
pkgs,
modulesPath,
...
}: {
imports = [
(modulesPath + "/profiles/qemu-guest.nix")
];
boot.initrd.availableKernelModules = ["ata_piix" "uhci_hcd" "virtio_pci" "virtio_scsi" "sd_mod" "sr_mod"];
boot.initrd.kernelModules = [];
boot.kernelModules = [];
boot.extraModulePackages = [];
fileSystems."/" = {
device = "/dev/disk/by-uuid/b8f1e3d1-b2d7-4100-a1af-01b1f63f8e5a";
fsType = "ext4";
};
swapDevices = [];
# Enables DHCP on each ethernet and wireless interface. In case of scripted networking
# (the default) this is the recommended approach. When using systemd-networkd it's
# still possible to use this option, but it's recommended to use it in conjunction
# with explicit per-interface declarations with `networking.interfaces.<interface>.useDHCP`.
networking.useDHCP = lib.mkDefault true;
# networking.interfaces.enp6s0.useDHCP = lib.mkDefault true;
# networking.interfaces.enp9s0f0.useDHCP = lib.mkDefault true;
# networking.interfaces.enp9s0f1.useDHCP = lib.mkDefault true;
nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux";
hardware.cpu.amd.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;
zramSwap = {
enable = true;
memoryPercent = 25;
priority = 10;
};
boot.tmp.useTmpfs = true;
}