13 lines
206 B
Nix
13 lines
206 B
Nix
{
|
|
lib,
|
|
config,
|
|
...
|
|
}: let
|
|
cfg = config.pim.tidal;
|
|
in {
|
|
options.pim.tidal.enable = lib.mkEnableOption "tidal";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
users.users.pim.extraGroups = ["audio"];
|
|
};
|
|
}
|