8 lines
175 B
Nix
8 lines
175 B
Nix
{ config, pkgs, lib, ... }:
|
|
{
|
|
config = lib.mkIf (config.networking.hostName == "FredOS-Mediaserver") {
|
|
environment.systemPackages.pkgs = [
|
|
qbittorrent-nox
|
|
];
|
|
};
|
|
}
|