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