diff --git a/hosts/desktop1/configuration.nix b/hosts/desktop1/configuration.nix index a6cb24b..18da507 100644 --- a/hosts/desktop1/configuration.nix +++ b/hosts/desktop1/configuration.nix @@ -75,7 +75,6 @@ gateway = "192.168.1.254"; }; }; - qbittorrent.enable = true; }; home-manager = { diff --git a/modules/nix/groups/desktop.nix b/modules/nix/groups/desktop.nix index 6c29411..49f4459 100644 --- a/modules/nix/groups/desktop.nix +++ b/modules/nix/groups/desktop.nix @@ -52,6 +52,7 @@ in calibre arduino-ide firejail + qbittorrent neomutt pass isync diff --git a/modules/nix/networking/default.nix b/modules/nix/networking/default.nix index 1bd72ab..735eff3 100644 --- a/modules/nix/networking/default.nix +++ b/modules/nix/networking/default.nix @@ -3,6 +3,5 @@ imports = [ ./openssh.nix ./wireshark.nix - ./qbittorrent.nix ]; } diff --git a/modules/nix/networking/qbittorrent.nix b/modules/nix/networking/qbittorrent.nix deleted file mode 100644 index 90959bb..0000000 --- a/modules/nix/networking/qbittorrent.nix +++ /dev/null @@ -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 ]; - }; -}