add yt-dlp.nix

This commit is contained in:
Asaki Yuki 2026-04-14 13:02:59 +07:00
parent 787584f141
commit ebe0bb1d71
5 changed files with 46 additions and 23 deletions

View file

@ -16,10 +16,15 @@ in {
config.programs.dolphin.package
];
home.file.".config/dolphinrc" = {
text = lib.generators.toINI {} (sanitize config.programs.dolphin.configs);
force = true;
};
home.file = lib.mergeAttrsList [
{
".config/dolphinrc" = {
text = lib.generators.toINI {} (sanitize config.programs.dolphin.configs);
force = true;
};
}
# (lib.attrsToList config.programs.dolphin.services-menu)z
];
};
options.programs.dolphin = {
@ -408,5 +413,10 @@ in {
};
};
};
services-menu = lib.mkOption {
type = lib.types.attrsOf (lib.types.attrsOf lib.types.str);
default = {};
};
};
}