nixos/services/arr-stack.nix

9 lines
180 B
Nix
Raw Normal View History

2026-01-20 21:10:47 +00:00
{ config, pkgs, lib, ... }:
{
config = lib.mkIf (config.networking.hostName == "FredOS-Mediaserver") {
2026-01-21 22:35:33 +00:00
environment.systemPackages with pkgs = [
2026-01-21 22:34:37 +00:00
qbittorrent-nox
];
2026-01-20 21:39:16 +00:00
};
2026-01-20 21:10:47 +00:00
}