Enable tmpfs

This commit is contained in:
Emi Simpson 2023-01-31 22:05:43 -05:00
parent 4177ace1e8
commit 91bdf946e9
Signed by: Emi
GPG Key ID: A12F2C2FFDC3D847
1 changed files with 8 additions and 0 deletions

View File

@ -33,6 +33,14 @@ let systemInformation = import ../system/system-information.nix; in
# Uncomment this once the root fs is actually btrfs
# fsType = "btrfs";
};
"/tmp" = {
device = "none";
fsType = "tmpfs";
options = [
"size=75%"
"mode=777"
];
};
"/boot/efi" = {
device = systemInformation.efiPartition;
fsType = "vfat";