From 05ac20314740c42e2b9fa636d15e97f78d92a6c1 Mon Sep 17 00:00:00 2001 From: cnst Date: Mon, 21 Jul 2025 14:49:48 +0200 Subject: [PATCH] group things --- modules/server/qbittorrent/default.nix | 14 ++------------ 1 file changed, 2 insertions(+), 12 deletions(-) diff --git a/modules/server/qbittorrent/default.nix b/modules/server/qbittorrent/default.nix index db2624d4..f5549104 100644 --- a/modules/server/qbittorrent/default.nix +++ b/modules/server/qbittorrent/default.nix @@ -17,16 +17,6 @@ in { default = 8080; description = "The port to host qBittorrent on."; }; - uid = lib.mkOption { - type = lib.types.int; - default = 899; - description = "The uid of qBittorrent."; - }; - gid = lib.mkOption { - type = lib.types.int; - default = 898; - description = "The gid qBittorrent."; - }; homepage.name = lib.mkOption { type = lib.types.str; default = "qBittorrent"; @@ -109,13 +99,13 @@ in { users = { users.qbittorrent = { - uid = 994; + uid = 899; group = "qbittorrent"; extraGroups = ["media"]; isSystemUser = true; }; groups.qbittorrent = { - gid = 993; + gid = 898; }; }; };