mirror of
https://github.com/nmasur/dotfiles
synced 2025-01-31 09:52:03 +00:00
26 lines
439 B
Nix
26 lines
439 B
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}:
|
|
|
|
let
|
|
cfg = config.nmasur.profiles.shared-media;
|
|
in
|
|
|
|
{
|
|
|
|
options.nmasur.profiles.shared-media.enable = lib.mkEnableOption "shared media groups";
|
|
|
|
config = lib.mkIf cfg.enable {
|
|
|
|
# Create a shared group for many services
|
|
users.groups.shared = { };
|
|
|
|
# Give the human user access to the shared group
|
|
users.users.${config.user}.extraGroups = [ config.users.groups.shared.name ];
|
|
|
|
};
|
|
}
|