qutebrowser: Don't hardcode download directory

This commit is contained in:
Donovan Glover 2024-04-11 05:35:18 -04:00
parent 3c186055a5
commit 222c2587fa
No known key found for this signature in database
GPG Key ID: EA7408A77AE1BE65

View File

@ -1,3 +1,8 @@
{ config, ... }:
let
inherit (config.xdg.userDirs) download;
in
{
programs.qutebrowser = {
enable = true;
@ -33,7 +38,7 @@
};
downloads = {
location.directory = "$HOME/";
location.directory = download;
location.prompt = false;
position = "bottom";
remove_finished = 5000;