From 0360e410b76adf1176888ec4394c41e98558f58a Mon Sep 17 00:00:00 2001 From: Nathan Zadoks Date: Mon, 7 Mar 2016 01:11:41 +0100 Subject: [PATCH] bird module: run as user/group `bird`, not `ircd` --- nixos/modules/services/networking/bird.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nixos/modules/services/networking/bird.nix b/nixos/modules/services/networking/bird.nix index e7e1db191529..e76cdac14ca8 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. '';