use btrfs

This commit is contained in:
Christoph Cullmann 2024-10-29 18:37:48 +01:00
parent 392ce162d4
commit a9898f7b3c
No known key found for this signature in database
2 changed files with 36 additions and 33 deletions

View file

@ -16,13 +16,18 @@
# amd graphics
hardware.graphics.extraPackages = with pkgs; [ amdvlk rocmPackages.clr.icd ];
FIXME
# /boot efi partition to boot in UEFI mode
fileSystems."/boot" =
{ device = "/dev/disk/by-id/nvme-CT4000P3PSSD8_2325E6E63746-part1";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
neededForBoot = true;
};
fileSystems."/boot" = {
device = "/dev/disk/by-uuid/A361-6A10";
fsType = "vfat";
options = [ "fmask=0022" "dmask=0022" ];
neededForBoot = true;
};
# encrypted system
boot.initrd.luks.devices."crypt-system" = {
device = "/dev/disk/by-uuid/a1d1ef39-74ea-4a6c-bc47-8ae90e002126";
allowDiscards = true;
bypassWorkqueues = true;
};
}