diff options
author | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-26 20:37:28 +0200 |
---|---|---|
committer | Benedikt Peetz <benedikt.peetz@b-peetz.de> | 2024-08-26 20:38:45 +0200 |
commit | b1015c26bd6ca47a4fd3ac8116ed1dae629147b7 (patch) | |
tree | d0302acf728cdbdde0c11a23518b133f3777a6b8 /modules | |
parent | feat(pkgs/yt): Update to v1.2.0 (diff) | |
download | nixos-config-b1015c26bd6ca47a4fd3ac8116ed1dae629147b7.tar.gz nixos-config-b1015c26bd6ca47a4fd3ac8116ed1dae629147b7.zip |
feat(conf/yt): Add a main config file
Diffstat (limited to 'modules')
-rw-r--r-- | modules/home/conf/yt/config.toml | 2 | ||||
-rw-r--r-- | modules/home/conf/yt/default.nix | 1 |
2 files changed, 3 insertions, 0 deletions
diff --git a/modules/home/conf/yt/config.toml b/modules/home/conf/yt/config.toml new file mode 100644 index 00000000..981481d9 --- /dev/null +++ b/modules/home/conf/yt/config.toml @@ -0,0 +1,2 @@ +[download] +max_cache_size = "5 GiB" diff --git a/modules/home/conf/yt/default.nix b/modules/home/conf/yt/default.nix index 14710586..507a0db1 100644 --- a/modules/home/conf/yt/default.nix +++ b/modules/home/conf/yt/default.nix @@ -1,4 +1,5 @@ {...}: { xdg.configFile."yt/mpv.conf".source = ./mpv.conf; xdg.configFile."yt/mpv.input.conf".source = ./input.conf; + xdg.configFile."yt/config.toml".source = ./config.toml; } |