From 6fe61afbaab81b3abb2d846305f6a9c50ae51218 Mon Sep 17 00:00:00 2001 From: Armel van Ravels Date: Tue, 31 Mar 2026 22:53:50 +0200 Subject: [PATCH] Add qbittorrent and drop zen kernel --- systems/gandalf/default.nix | 7 +------ systems/modules/qbittorrent.nix | 7 +++++++ 2 files changed, 8 insertions(+), 6 deletions(-) create mode 100644 systems/modules/qbittorrent.nix 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 + ]; +}