make downloads on GLaDOS be tmpfs

This commit is contained in:
Lillian Violet 2025-12-27 15:46:55 +01:00
parent f9dadacbe4
commit e7c15976a2

View file

@ -14,7 +14,7 @@
type = "filesystem";
format = "vfat";
mountpoint = "/boot";
mountOptions = [ "umask=0077" ];
mountOptions = ["umask=0077"];
};
};
nvme_luks = {
@ -22,7 +22,7 @@
content = {
type = "luks";
name = "nvme_crypted";
extraOpenArgs = [ ];
extraOpenArgs = [];
settings = {
# if you want to use the key for interactive login be sure there is no trailing newline
# for example use `echo -n "password" > /tmp/secret.key`
@ -65,5 +65,13 @@
};
};
};
nodev = {
"/home/lillian/Downloads" = {
fsType = "tmpfs";
mountOptions = [
"size=4G"
];
};
};
};
}