From 4bc3eaed2767ffbe3f3efdfba7986a1adc36134a Mon Sep 17 00:00:00 2001 From: teutat3s Date: Sun, 24 Oct 2021 01:18:49 +0200 Subject: [PATCH] dumpyourvms: switch to unencrypted /boot partition --- hosts/dumpyourvms/hardware-configuration.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hosts/dumpyourvms/hardware-configuration.nix b/hosts/dumpyourvms/hardware-configuration.nix index 6d2c9b64..74a32dbc 100644 --- a/hosts/dumpyourvms/hardware-configuration.nix +++ b/hosts/dumpyourvms/hardware-configuration.nix @@ -23,7 +23,7 @@ boot.initrd.luks.devices."cryptroot".device = "/dev/disk/by-uuid/c100b9a7-99d7-44d9-b7c2-3892a5f233c4"; - fileSystems."/boot/efi" = + fileSystems."/boot" = { device = "/dev/disk/by-uuid/06B8-5414"; fsType = "vfat"; @@ -32,6 +32,7 @@ swapDevices = [{ device = "/dev/disk/by-uuid/02fa042f-7310-4be6-a615-524d5d7dc909"; }]; + powerManagement.cpuFreqGovernor = lib.mkDefault "powersave"; # high-resolution display hardware.video.hidpi.enable = lib.mkDefault true; }