Add qbittorrent and drop zen kernel

This commit is contained in:
2026-03-31 22:53:50 +02:00
parent 84b80ee811
commit 6fe61afbaa
2 changed files with 8 additions and 6 deletions

View File

@@ -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

View File

@@ -0,0 +1,7 @@
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
qbittorrent
];
}