diff --git a/machine/backyard/default.nix b/machine/backyard/default.nix index 1326d9a..5a6954a 100644 --- a/machine/backyard/default.nix +++ b/machine/backyard/default.nix @@ -6,10 +6,9 @@ ./jellyfin.nix ]; - boot.loader.grub = { - enable = true; - device = "/dev/sda"; - }; + # Use the systemd-boot EFI boot loader. + boot.loader.systemd-boot.enable = true; + boot.loader.efi.canTouchEfiVariables = true; beatific.hostName = "backyard"; beatific.defaults.tvbSync = false; diff --git a/machine/backyard/hardware-configuration.nix b/machine/backyard/hardware-configuration.nix index d7426e7..1690de4 100644 --- a/machine/backyard/hardware-configuration.nix +++ b/machine/backyard/hardware-configuration.nix @@ -8,18 +8,23 @@ [ (modulesPath + "/installer/scan/not-detected.nix") ]; - boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "nvme" "usb_storage" "usbhid" "sd_mod" "sr_mod" ]; + boot.initrd.availableKernelModules = [ "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" "sr_mod" ]; boot.initrd.kernelModules = [ ]; boot.kernelModules = [ "kvm-intel" ]; boot.extraModulePackages = [ ]; fileSystems."/" = - { device = "/dev/disk/by-uuid/798089ca-f249-431d-aa08-65909b85a184"; + { device = "/dev/disk/by-uuid/75addc56-2a0d-431e-a0c5-f6ee0e370e61"; fsType = "ext4"; }; + fileSystems."/boot" = + { device = "/dev/disk/by-uuid/610F-1EB7"; + fsType = "vfat"; + }; + swapDevices = - [ { device = "/dev/disk/by-uuid/5d55f9b7-cde3-403d-9c91-61c4b68c71f9"; } + [ { device = "/dev/disk/by-uuid/cc464bb4-e1c8-46c0-adbb-ea1a3cfa5b03"; } ]; # Enables DHCP on each ethernet and wireless interface. In case of scripted networking @@ -30,6 +35,5 @@ # networking.interfaces.eno1.useDHCP = lib.mkDefault true; nixpkgs.hostPlatform = lib.mkDefault "x86_64-linux"; - powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware; }