about summary refs log tree commit diff
path: root/nixos/modules/services/misc
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/misc
parent0e23a175de3687df8232fe118cbe87f04228ff28 (diff)
downloadnixlib-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.tar
nixlib-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.tar.gz
nixlib-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.tar.bz2
nixlib-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.tar.lz
nixlib-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.tar.xz
nixlib-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.tar.zst
nixlib-a142d68b4391fc78cf8c3d4f86300e10c3bf730e.zip
Fix some uid/gid attributes to match the actual user/group name
Diffstat (limited to 'nixos/modules/services/misc')
-rw-r--r--nixos/modules/services/misc/folding-at-home.nix2
1 files changed, 1 insertions, 1 deletions
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;
       };