mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-12 04:35:41 +03:00
nixos/shout: define group, fix eval after #133166
This commit is contained in:
parent
feeca7dd55
commit
d09ab77588
2 changed files with 4 additions and 2 deletions
|
@ -237,7 +237,7 @@ in
|
||||||
riemanntools = 203;
|
riemanntools = 203;
|
||||||
subsonic = 204;
|
subsonic = 204;
|
||||||
riak = 205;
|
riak = 205;
|
||||||
shout = 206;
|
#shout = 206; # dynamically allocated as of 2021-09-18
|
||||||
gateone = 207;
|
gateone = 207;
|
||||||
namecoin = 208;
|
namecoin = 208;
|
||||||
#lxd = 210; # unused
|
#lxd = 210; # unused
|
||||||
|
|
|
@ -83,11 +83,13 @@ in {
|
||||||
|
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
users.users.shout = {
|
users.users.shout = {
|
||||||
uid = config.ids.uids.shout;
|
isSystemUser = true;
|
||||||
|
group = "shout";
|
||||||
description = "Shout daemon user";
|
description = "Shout daemon user";
|
||||||
home = shoutHome;
|
home = shoutHome;
|
||||||
createHome = true;
|
createHome = true;
|
||||||
};
|
};
|
||||||
|
users.groups.shout = {};
|
||||||
|
|
||||||
systemd.services.shout = {
|
systemd.services.shout = {
|
||||||
description = "Shout web IRC client";
|
description = "Shout web IRC client";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue