tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
bird module: run as user/group `bird`, not `ircd`
Nathan Zadoks
10 years ago
0360e410
e82dcd70
+2
-2
1 changed file
expand all
collapse all
unified
split
nixos
modules
services
networking
bird.nix
+2
-2
nixos/modules/services/networking/bird.nix
···
30
30
31
31
user = mkOption {
32
32
type = types.string;
33
33
-
default = "ircd";
33
33
+
default = "bird";
34
34
description = ''
35
35
BIRD Internet Routing Daemon user.
36
36
'';
···
38
38
39
39
group = mkOption {
40
40
type = types.string;
41
41
-
default = "ircd";
41
41
+
default = "bird";
42
42
description = ''
43
43
BIRD Internet Routing Daemon group.
44
44
'';