clean qbittorrent
All checks were successful
nixos config pipeline / show-flake (push) Successful in 25s
nixos config pipeline / deploy (push) Successful in 6s

This commit is contained in:
smayzy 2026-02-28 16:09:18 +01:00
parent 3dac11f8d9
commit 058f8318e5
4 changed files with 1 additions and 22 deletions

View File

@ -75,7 +75,6 @@
gateway = "192.168.1.254"; gateway = "192.168.1.254";
}; };
}; };
qbittorrent.enable = true;
}; };
home-manager = { home-manager = {

View File

@ -52,6 +52,7 @@ in
calibre calibre
arduino-ide arduino-ide
firejail firejail
qbittorrent
neomutt neomutt
pass pass
isync isync

View File

@ -3,6 +3,5 @@
imports = [ imports = [
./openssh.nix ./openssh.nix
./wireshark.nix ./wireshark.nix
./qbittorrent.nix
]; ];
} }

View File

@ -1,20 +0,0 @@
{
lib,
config,
pkgs,
...
}:
let
inherit (lib) mkIf mkOption types;
in
{
options.smayzy.qbittorrent.enable = mkOption {
type = types.bool;
default = false;
description = "qbittorrent";
};
config = mkIf config.smayzy.qbittorrent.enable {
environment.systemPackages = with pkgs; [ qbittorrent ];
};
}