Enable tmpfs
This commit is contained in:
parent
4177ace1e8
commit
91bdf946e9
|
@ -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";
|
||||
|
|
Loading…
Reference in a new issue