diff --git a/systems/gandalf/default.nix b/systems/gandalf/default.nix index 8eb2adc..04daf02 100644 --- a/systems/gandalf/default.nix +++ b/systems/gandalf/default.nix @@ -20,6 +20,7 @@ ../modules/audacity.nix ../modules/ollama.nix ../modules/wireguard.nix + ../modules/qbittorrent.nix ]; boot.loader.systemd-boot.enable = true; @@ -50,12 +51,6 @@ virtualisation.libvirtd.enable = true; - specialisation = { - zen.configuration = { - boot.kernelPackages = pkgs.linuxPackages_zen; - }; - }; - services = { # Bluetooth fixes # Can be removed when https://github.com/NixOS/nixpkgs/pull/499670 is merged and in 25.11 diff --git a/systems/modules/qbittorrent.nix b/systems/modules/qbittorrent.nix new file mode 100644 index 0000000..d443e9b --- /dev/null +++ b/systems/modules/qbittorrent.nix @@ -0,0 +1,7 @@ +{ pkgs, ... }: + +{ + environment.systemPackages = with pkgs; [ + qbittorrent + ]; +}