nixos/services/arr-stack.nix
2026-01-21 22:37:12 +00:00

8 lines
181 B
Nix

{ config, pkgs, lib, ... }:
{
config = lib.mkIf (config.networking.hostName == "FredOS-Mediaserver") {
environment.systemPackages = with pkgs; [
qbittorrent-nox
];
};
}