summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--nixos/modules/misc/ids.nix2
-rw-r--r--nixos/modules/services/misc/ripple-data-api.nix4
2 files changed, 4 insertions, 2 deletions
diff --git a/nixos/modules/misc/ids.nix b/nixos/modules/misc/ids.nix
index c22075de1c9..cfe0157579e 100644
--- a/nixos/modules/misc/ids.nix
+++ b/nixos/modules/misc/ids.nix
@@ -218,7 +218,7 @@ in
       #unifi = 183; dynamically allocated as of 2021-09-17
       uptimed = 184;
       zope2 = 185;
-      ripple-data-api = 186;
+      #ripple-data-api = 186; dynamically allocated as of 2021-09-17
       mediatomb = 187;
       #rdnssd = 188; #dynamically allocated as of 2021-09-18
       ihaskell = 189;
diff --git a/nixos/modules/services/misc/ripple-data-api.nix b/nixos/modules/services/misc/ripple-data-api.nix
index 9fab462f7e3..93eba98b7d3 100644
--- a/nixos/modules/services/misc/ripple-data-api.nix
+++ b/nixos/modules/services/misc/ripple-data-api.nix
@@ -187,7 +187,9 @@ in {
 
     users.users.ripple-data-api =
       { description = "Ripple data api user";
-        uid = config.ids.uids.ripple-data-api;
+        isSystemUser = true;
+        group = "ripple-data-api";
       };
+    users.groups.ripple-data-api = {};
   };
 }