make downloads on GLaDOS be tmpfs
This commit is contained in:
parent
f9dadacbe4
commit
e7c15976a2
1 changed files with 10 additions and 2 deletions
|
|
@ -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"
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue