From a142d68b4391fc78cf8c3d4f86300e10c3bf730e Mon Sep 17 00:00:00 2001 From: Eelco Dolstra Date: Tue, 29 Apr 2014 10:51:42 +0200 Subject: Fix some uid/gid attributes to match the actual user/group name --- nixos/modules/services/databases/4store-endpoint.nix | 2 +- nixos/modules/services/databases/4store.nix | 2 +- nixos/modules/services/games/ghost-one.nix | 4 ++-- nixos/modules/services/misc/folding-at-home.nix | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) (limited to 'nixos/modules/services') diff --git a/nixos/modules/services/databases/4store-endpoint.nix b/nixos/modules/services/databases/4store-endpoint.nix index 68913f15f953..f2d64b6891db 100644 --- a/nixos/modules/services/databases/4store-endpoint.nix +++ b/nixos/modules/services/databases/4store-endpoint.nix @@ -54,7 +54,7 @@ with lib; users.extraUsers = singleton { name = endpointUser; - uid = config.ids.uids.fourStoreEndpoint; + uid = config.ids.uids.fourstorehttp; description = "4Store SPARQL endpoint user"; # home = stateDir; }; diff --git a/nixos/modules/services/databases/4store.nix b/nixos/modules/services/databases/4store.nix index 1725672a6594..469fef69c955 100644 --- a/nixos/modules/services/databases/4store.nix +++ b/nixos/modules/services/databases/4store.nix @@ -45,7 +45,7 @@ with lib; users.extraUsers = singleton { name = fourStoreUser; - uid = config.ids.uids.fourStore; + uid = config.ids.uids.fourstore; description = "4Store database user"; home = stateDir; }; diff --git a/nixos/modules/services/games/ghost-one.nix b/nixos/modules/services/games/ghost-one.nix index 7a3ecebec39c..07d7287ed88e 100644 --- a/nixos/modules/services/games/ghost-one.nix +++ b/nixos/modules/services/games/ghost-one.nix @@ -57,14 +57,14 @@ in users.extraUsers = singleton { name = ghostUser; - uid = config.ids.uids.ghostOne; + uid = config.ids.uids.ghostone; description = "Ghost One game server user"; home = stateDir; }; users.extraGroups = singleton { name = ghostUser; - gid = config.ids.gids.ghostOne; + gid = config.ids.gids.ghostone; }; services.ghostOne.config = '' diff --git a/nixos/modules/services/misc/folding-at-home.nix b/nixos/modules/services/misc/folding-at-home.nix index 0093e3c0c33a..392d2d1f0028 100644 --- a/nixos/modules/services/misc/folding-at-home.nix +++ b/nixos/modules/services/misc/folding-at-home.nix @@ -44,7 +44,7 @@ in { users.extraUsers = singleton { name = fahUser; - uid = config.ids.uids.foldingAtHome; + uid = config.ids.uids.foldingathome; description = "Folding@Home user"; home = stateDir; }; -- cgit 1.4.1