1
0
Fork 0

Update tmpfs option names.

This commit is contained in:
Kevin Baensch 2023-04-16 18:29:48 +02:00
parent c87c5b5e77
commit a178d8a7f7
Signed by: derped
GPG Key ID: C0F1D326C7626543
2 changed files with 8 additions and 4 deletions

View File

@ -13,8 +13,10 @@ in {
# signing-certificate = "${cfg.secretPath}/secureboot/db.crt";
};
loader.efi.canTouchEfiVariables = true;
tmpOnTmpfs = true;
cleanTmpDir = true;
tmp = {
useTmpfs = true;
cleanOnBoot= true;
};
kernelPackages = pkgs.linuxPackages_latest;
initrd.availableKernelModules = [ "xhci_pci" "ahci" "sd_mod" "rtsx_pci_sdmmc" ];

View File

@ -10,8 +10,10 @@ in {
enable = true;
};
loader.efi.canTouchEfiVariables = true;
tmpOnTmpfs = true;
cleanTmpDir = true;
tmp = {
useTmpfs = true;
cleanOnBoot= true;
};
kernelPackages = pkgs.linuxPackages_latest;
initrd.availableKernelModules = [ "nvme" "xhci_pci" "usb_storage" "sd_mod" "rtsx_pci_sdmmc" ];