From 4ab8f76e9b9f9109df044c3f52d9d1a659332a62 Mon Sep 17 00:00:00 2001 From: Giulio De Pasquale Date: Thu, 1 Jul 2021 12:26:48 +0200 Subject: [PATCH] mount Downloads on tmpfs for giulio --- users.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/users.nix b/users.nix index 342b984..920eff4 100644 --- a/users.nix +++ b/users.nix @@ -28,4 +28,10 @@ home-manager.users.giulio = { imports = [ ./home ]; }; + + fileSystems."/home/giulio/Downloads" = { + device = "tmpfs"; + fsType = "tmpfs"; + options = ["size=3G"]; + }; }