Server NixOS configs
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix: hardware shuffling

+5 -10
+2 -10
hosts/tethys/bootloader.nix
··· 1 - { pkgs, modulesPath, ... }: 2 - let 3 - fileSystems = { xfs = true; vfat = true; }; 4 - in 1 + { pkgs, ... }: 5 2 { 6 - imports = [(modulesPath + "/profiles/qemu-guest.nix")]; 7 - 8 3 boot = { 9 4 extraModulePackages = [ ]; 10 5 kernelModules = []; ··· 19 14 loader = { 20 15 systemd-boot.enable = true; 21 16 systemd-boot.configurationLimit = 5; 22 - efi = { 23 - canTouchEfiVariables = true; 24 - efiSysMountPoint = "/boot/efi"; 25 - }; 17 + efi.canTouchEfiVariables = true; 26 18 }; 27 19 }; 28 20 }
+3
hosts/tethys/hardware.nix
··· 1 + { modulesPath, ... }: 1 2 { 3 + imports = [(modulesPath + "/profiles/qemu-guest.nix")]; 4 + 2 5 hardware = { 3 6 cpu.amd.updateMicrocode = true; 4 7 };