summary refs log tree commit diff
path: root/nixos/modules/services/networking/bird.nix
diff options
context:
space:
mode:
authorNathan Zadoks <nathan@nathan7.eu>2016-03-07 01:11:41 +0100
committerNathan Zadoks <nathan@nathan7.eu>2016-03-07 02:02:58 +0100
commit0360e410b76adf1176888ec4394c41e98558f58a (patch)
treeaf268840b3e876a874b8dda37dcc2fd62903c33d /nixos/modules/services/networking/bird.nix
parente82dcd70e44238dd6a9b30cc3359e5a5f0139e8a (diff)
downloadnixpkgs-0360e410b76adf1176888ec4394c41e98558f58a.tar
nixpkgs-0360e410b76adf1176888ec4394c41e98558f58a.tar.gz
nixpkgs-0360e410b76adf1176888ec4394c41e98558f58a.tar.bz2
nixpkgs-0360e410b76adf1176888ec4394c41e98558f58a.tar.lz
nixpkgs-0360e410b76adf1176888ec4394c41e98558f58a.tar.xz
nixpkgs-0360e410b76adf1176888ec4394c41e98558f58a.tar.zst
nixpkgs-0360e410b76adf1176888ec4394c41e98558f58a.zip
bird module: run as user/group `bird`, not `ircd`
Diffstat (limited to 'nixos/modules/services/networking/bird.nix')
-rw-r--r--nixos/modules/services/networking/bird.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/nixos/modules/services/networking/bird.nix b/nixos/modules/services/networking/bird.nix
index e7e1db19152..e76cdac14ca 100644
--- a/nixos/modules/services/networking/bird.nix
+++ b/nixos/modules/services/networking/bird.nix
@@ -30,7 +30,7 @@ in
 
       user = mkOption {
         type = types.string;
-        default = "ircd";
+        default = "bird";
         description = ''
           BIRD Internet Routing Daemon user.
         '';
@@ -38,7 +38,7 @@ in
 
       group = mkOption {
         type = types.string;
-        default = "ircd";
+        default = "bird";
         description = ''
           BIRD Internet Routing Daemon group.
         '';