1
0
Fork 0

general overhaul

This commit is contained in:
Philipp 2025-02-27 17:33:29 +01:00
parent 39fb8c64dc
commit d0a9427fd0
Signed by: Philipp
GPG key ID: 9EBD8439AFBAB750
26 changed files with 657 additions and 2871 deletions

View file

@ -0,0 +1,24 @@
{
config,
lib,
pkgs,
namespace,
...
}:
with lib;
with lib.${namespace};
let
cfg = config.${namespace}.apps.mpv;
in
{
options.${namespace}.apps.mpv = with types; {
enable = mkBoolOpt false "Whether or not to enable mpv.";
};
config = mkIf cfg.enable {
programs.mpv = {
enable = true;
};
};
}