16 lines
318 B
Nix
16 lines
318 B
Nix
{...}: {
|
|
config.flake.modules.homeManager.mpris-proxy = {
|
|
lib,
|
|
config,
|
|
...
|
|
}: {
|
|
options.azos.mpris-proxy.enable = lib.mkOption {
|
|
default = true;
|
|
type = lib.types.bool;
|
|
};
|
|
config = lib.mkIf config.azos.mpris-proxy.enable {
|
|
services.mpris-proxy.enable = true;
|
|
};
|
|
};
|
|
}
|