fuyuki: reinstall

This commit is contained in:
Victor Mignot 2025-02-27 09:10:39 +01:00
parent b40c4322a7
commit 0f33bb320b
Signed by: dala
SSH key fingerprint: SHA256:+3O9MhlDc2tJL0n+E+Myr7nL+74DP9AXdIXHmIqZTkY

View file

@ -17,34 +17,34 @@
boot.initrd.luks.devices = {
crypted-nixos = {
device = "/dev/disk/by-uuid/401036ff-8ad8-4738-a249-85391dac0430";
device = "/dev/disk/by-uuid/7531aa41-6b40-43a0-b3a8-a24d99b9de27";
preLVM = true;
};
};
fileSystems = {
"/" = {
device = "/dev/disk/by-uuid/663f1c4a-dce6-48b2-b8e2-a602e812c49b";
device = "/dev/disk/by-uuid/965a9b02-e6fb-49b6-aab6-0a1200d558b5";
fsType = "ext4";
};
"/boot" = {
device = "/dev/disk/by-uuid/3F42-7C9B";
device = "/dev/disk/by-uuid/9E6B-3E0D";
fsType = "vfat";
};
"/nix" = {
device = "/dev/disk/by-uuid/148a5295-396b-495b-b46e-1fa4e99cf9d0";
device = "/dev/disk/by-uuid/4fe61702-77f9-4321-a107-36b2ac7dc0fb";
fsType = "ext4";
};
"/home" = {
device = "/dev/disk/by-uuid/16b6bd32-465c-4a42-a082-df42d912e5e5";
device = "/dev/disk/by-uuid/564c2d90-3501-4e5d-9c1f-5833af5b65c1";
fsType = "ext4";
};
};
swapDevices = [ { device = "/dev/disk/by-uuid/0bc27219-00dd-4ae9-b946-ab65a68cbdf1"; } ];
swapDevices = [ { device = "/dev/disk/by-uuid/d4a1f04b-02a0-403a-ad95-599e8c52bc9b"; } ];
powerManagement.cpuFreqGovernor = lib.mkDefault "powersave";
hardware.cpu.intel.updateMicrocode = lib.mkDefault config.hardware.enableRedistributableFirmware;