nixos/roles/torrent.nix
Ivan Bushchik c2d197d7f0
Add media-client and torrent roles
Signed-off-by: Ivan Bushchik <ivabus@ivabus.dev>
2023-08-27 19:27:26 +03:00

13 lines
379 B
Nix

{ config, pkgs, lib, ... }:
let
cfg = config.my.roles.torrent;
in {
options.my.roles.torrent.enable = lib.mkEnableOption "Enable torrent support.";
# TODO: do something about systems without GUI (i don't use any at the moment)
config = lib.mkIf (cfg.enable) {
environment.systemPackages = with pkgs; [
(transmission.override {enableGTK3 = true;})
];
};
}