mirror of
https://github.com/donovanglover/nix-config.git
synced 2024-11-22 08:14:00 +01:00
qutebrowser: Don't hardcode download directory
This commit is contained in:
parent
3c186055a5
commit
222c2587fa
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user