mount Downloads on tmpfs for giulio

This commit is contained in:
Giulio De Pasquale 2021-07-01 12:26:48 +02:00
parent 8a464250e7
commit 4ab8f76e9b

View File

@ -28,4 +28,10 @@
home-manager.users.giulio = { home-manager.users.giulio = {
imports = [ ./home ]; imports = [ ./home ];
}; };
fileSystems."/home/giulio/Downloads" = {
device = "tmpfs";
fsType = "tmpfs";
options = ["size=3G"];
};
} }