mirror of
https://github.com/donovanglover/nix-config.git
synced 2025-06-18 23:56:55 +02: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 = {
|
programs.qutebrowser = {
|
||||||
enable = true;
|
enable = true;
|
||||||
@ -33,7 +38,7 @@
|
|||||||
};
|
};
|
||||||
|
|
||||||
downloads = {
|
downloads = {
|
||||||
location.directory = "$HOME/ダウンロード";
|
location.directory = download;
|
||||||
location.prompt = false;
|
location.prompt = false;
|
||||||
position = "bottom";
|
position = "bottom";
|
||||||
remove_finished = 5000;
|
remove_finished = 5000;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user