Files
home-manager/modules/programs/gallery-dl.nix
Austin Horstman 355734d876 treewide: remove literalExpression where unneeded
`literalExpression` is intended just to signify code that needs to stay
a string that gets represented exactly as-is for docs. It has been
misused heavily and people get confused repeatedly on when or not to use
it because of the rampant misuse.
2026-05-17 21:43:25 -05:00

43 lines
959 B
Nix

{
config,
lib,
pkgs,
...
}:
let
cfg = config.programs.gallery-dl;
jsonFormat = pkgs.formats.json { };
in
{
meta.maintainers = [ ];
options.programs.gallery-dl = {
enable = lib.mkEnableOption "gallery-dl";
package = lib.mkPackageOption pkgs "gallery-dl" { nullable = true; };
settings = lib.mkOption {
inherit (jsonFormat) type;
default = { };
example = {
extractor.base-directory = "~/Downloads";
};
description = ''
Configuration written to
{file}`$XDG_CONFIG_HOME/gallery-dl/config.json`. See
<https://github.com/mikf/gallery-dl#configuration>
for supported values.
'';
};
};
config = lib.mkIf cfg.enable {
home.packages = lib.mkIf (cfg.package != null) [ cfg.package ];
xdg.configFile."gallery-dl/config.json" = lib.mkIf (cfg.settings != { }) {
source = jsonFormat.generate "gallery-dl-settings" cfg.settings;
};
};
}