Nixfiles! :3
0

Configure Feed

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

After fighting with emulation and then deciding to dual boot but it destroying my EFI and- I'm back!


Signed-off-by: MLC Bloeiman <mar@strawmelonjuice.com>

MLC Bloeiman (Apr 1, 2026, 2:33 PM +0200) 14dd410c 99eb0c98

+6 -5
+3 -2
hosts/Samurott/configuration.nix
··· 103 103 hardware.nvidia.open = true; # see the note above 104 104 105 105 fileSystems."/mnt/b1b88f6d-d942-470f-97b5-dd422265e59b" = { 106 - device = "/dev/disk/by-partuuid/b1b88f6d-d942-470f-97b5-dd422265e59b"; 107 - fsType = "ext4"; 106 + device = "/dev/disk/by-id/ata-ST2000DM008-2UB102_WFL8TYW7-part1"; 107 + fsType = "ntfs"; 108 108 options = [ 109 + "default" 109 110 "users" 110 111 "nofail" 111 112 "exec"
+3 -3
hosts/Samurott/hardware-configuration.nix
··· 8 8 [ (modulesPath + "/installer/scan/not-detected.nix") 9 9 ]; 10 10 11 - boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usbhid" "usb_storage" "sd_mod" ]; 11 + boot.initrd.availableKernelModules = [ "nvme" "xhci_pci" "ahci" "usb_storage" "usbhid" "sd_mod" ]; 12 12 boot.initrd.kernelModules = [ ]; 13 13 boot.kernelModules = [ "kvm-amd" ]; 14 14 boot.extraModulePackages = [ ]; 15 15 16 16 fileSystems."/" = 17 - { device = "/dev/disk/by-uuid/299af4bc-d721-4803-97d8-ffc631953aab"; 17 + { device = "/dev/disk/by-uuid/f5449776-64d7-4c51-9e47-b3525f8b4da3"; 18 18 fsType = "ext4"; 19 19 }; 20 20 21 21 fileSystems."/boot" = 22 - { device = "/dev/disk/by-uuid/585B-C826"; 22 + { device = "/dev/disk/by-uuid/0893-6D4B"; 23 23 fsType = "vfat"; 24 24 options = [ "fmask=0077" "dmask=0077" ]; 25 25 };