add yt-dlp.nix
This commit is contained in:
parent
787584f141
commit
ebe0bb1d71
5 changed files with 46 additions and 23 deletions
|
|
@ -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 = {};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue