fix neko config
This commit is contained in:
parent
75cf0b8d07
commit
f0c621bbbf
|
@ -16,13 +16,18 @@
|
||||||
# intel graphics
|
# intel graphics
|
||||||
hardware.graphics.extraPackages = with pkgs; [ intel-media-driver intel-compute-runtime ];
|
hardware.graphics.extraPackages = with pkgs; [ intel-media-driver intel-compute-runtime ];
|
||||||
|
|
||||||
FIXME
|
|
||||||
|
|
||||||
# /boot efi partition to boot in UEFI mode
|
# /boot efi partition to boot in UEFI mode
|
||||||
fileSystems."/boot" =
|
fileSystems."/boot" = {
|
||||||
{ device = "/dev/disk/by-id/nvme-Seagate_FireCuda_530_ZP4000GM30013_7VS01VBM-part1";
|
device = "/dev/disk/by-uuid/554C-161A";
|
||||||
fsType = "vfat";
|
fsType = "vfat";
|
||||||
options = [ "fmask=0022" "dmask=0022" ];
|
options = [ "fmask=0022" "dmask=0022" ];
|
||||||
neededForBoot = true;
|
neededForBoot = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# encrypted system
|
||||||
|
boot.initrd.luks.devices."crypt-system" = {
|
||||||
|
device = "/dev/disk/by-uuid/91f98284-b0fa-40b9-8a32-37f71968b2dd";
|
||||||
|
allowDiscards = true;
|
||||||
|
bypassWorkqueues = true;
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue