2024-02-26 20:41:59 -05:00
|
|
|
{...}: {
|
|
|
|
imports = [
|
2024-02-27 03:54:21 -05:00
|
|
|
./qbittorrent.nix
|
2024-02-26 20:41:59 -05:00
|
|
|
./wireguard.nix
|
|
|
|
];
|
2024-02-27 03:54:21 -05:00
|
|
|
|
|
|
|
users.groups."matt" = {
|
|
|
|
gid = 1000;
|
|
|
|
members = ["matt"];
|
|
|
|
};
|
|
|
|
|
|
|
|
services.qbittorrent = {
|
|
|
|
enable = true;
|
|
|
|
user = "matt";
|
|
|
|
group = "matt";
|
|
|
|
};
|
2024-02-26 20:41:59 -05:00
|
|
|
}
|