created qbittorrent config
This commit is contained in:
parent
899617266f
commit
89c8cff8a9
4 changed files with 179 additions and 0 deletions
|
@ -23,6 +23,7 @@
|
|||
ollama = 2008;
|
||||
git = 2009;
|
||||
immich = 2010;
|
||||
qbittorrent = 2011;
|
||||
};
|
||||
|
||||
gids = {
|
||||
|
@ -38,6 +39,7 @@
|
|||
ollama = 2008;
|
||||
git = 2009;
|
||||
immich = 2010;
|
||||
qbittorrent = 2011;
|
||||
};
|
||||
|
||||
users = config.users.users;
|
||||
|
@ -159,6 +161,12 @@ in {
|
|||
isSystemUser = true;
|
||||
group = config.users.users.immich.name;
|
||||
};
|
||||
|
||||
qbittorrent = {
|
||||
uid = lib.mkForce uids.qbittorrent;
|
||||
isNormalUser = true;
|
||||
group = config.users.users.qbittorrent.name;
|
||||
};
|
||||
};
|
||||
|
||||
groups = {
|
||||
|
@ -255,6 +263,14 @@ in {
|
|||
# leyla
|
||||
];
|
||||
};
|
||||
|
||||
qbittorrent = {
|
||||
gid = lib.mkForce gids.qbittorrent;
|
||||
members = [
|
||||
users.qbittorrent.name
|
||||
leyla
|
||||
];
|
||||
};
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue