diff --git a/configs/filesystems.nix b/configs/filesystems.nix index 8bf0fd5..6edace3 100644 --- a/configs/filesystems.nix +++ b/configs/filesystems.nix @@ -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";