Migrate group members to media-stack module

This commit is contained in:
♥ Minnie ♥ 2023-11-06 23:51:43 +00:00
parent 090022c51f
commit 5b38337eb3
2 changed files with 14 additions and 11 deletions

View file

@ -237,17 +237,6 @@
shell = pkgs.zsh;
};
};
# Additional groups to create.
groups = {
media.members = [
"jellyfin"
"sonarr"
"radarr"
"lidarr"
"qbittorrent"
];
};
};
# https://nixos.wiki/wiki/FAQ/When_do_I_update_stateVersion

View file

@ -37,5 +37,19 @@
port = 8080;
};
};
# Add our services to relevant groups
users.groups = {
media.members = [
"jellyfin"
"sonarr"
"radarr"
"lidarr"
"qbittorrent"
];
render.members = [
"jellyfin"
];
};
}