diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-25 20:02:24 +0100 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-11-25 20:02:24 +0100 |
commit | 1bd34d8cbb70d89ec7095f7c51a78d6c21ea68e6 (patch) | |
tree | 374711fde60c85d1de810568d220e8c789247930 | |
parent | tests(tests/less): Increase sleep time to avoid flakiness (diff) | |
download | nixos-config-1bd34d8cbb70d89ec7095f7c51a78d6c21ea68e6.tar.gz nixos-config-1bd34d8cbb70d89ec7095f7c51a78d6c21ea68e6.zip |
feat(modules/legacy/default): Move the download dir to `/tmp`
This forces me to always move the downloaded files *somewhere*. Otherwise, the download directory would just end up utterly unsorted and thus useless.
Diffstat (limited to '')
-rw-r--r-- | modules/home.legacy/default.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/home.legacy/default.nix b/modules/home.legacy/default.nix index f4736150..de6fec25 100644 --- a/modules/home.legacy/default.nix +++ b/modules/home.legacy/default.nix @@ -46,7 +46,7 @@ in { createDirectories = true; desktop = null; documents = "${homeDirectory}/school/general"; - download = "${homeDirectory}/media/downloads"; + download = "/tmp/download"; music = "${homeDirectory}/media/music"; pictures = "${homeDirectory}/media/pictures"; videos = "${homeDirectory}/media/videos"; |