summary refs log tree commit diff
path: root/nixos/modules/services/databases/4store.nix
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-04-29 10:51:42 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-04-29 10:51:42 +0200
commita142d68b4391fc78cf8c3d4f86300e10c3bf730e (patch)
tree8bce3854a1930bd5ebcd0c4a98d889d8a387b0fb /nixos/modules/services/databases/4store.nix
parent0e23a175de3687df8232fe118cbe87f04228ff28 (diff)
downloadnixpkgs-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.tar
nixpkgs-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.tar.gz
nixpkgs-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.tar.bz2
nixpkgs-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.tar.lz
nixpkgs-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.tar.xz
nixpkgs-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.tar.zst
nixpkgs-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.zip
Fix some uid/gid attributes to match the actual user/group name
Diffstat (limited to 'nixos/modules/services/databases/4store.nix')
-rw-r--r--nixos/modules/services/databases/4store.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/services/databases/4store.nix b/nixos/modules/services/databases/4store.nix
index 1725672a659..469fef69c95 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;
       };