bird module: run as user/group `bird`, not `ircd`

+2 -2
+2 -2
nixos/modules/services/networking/bird.nix
··· 30 30 31 31 user = mkOption { 32 32 type = types.string; 33 - default = "ircd"; 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 - default = "ircd"; 41 + default = "bird"; 42 42 description = '' 43 43 BIRD Internet Routing Daemon group. 44 44 '';