aboutsummaryrefslogblamecommitdiff
path: root/home/transmission-remote/default.nix
blob: 629e382b0cdc4dd70c8a091a4ef1376276078ced (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11

                                             

  






                                                                
{ lib, config, pkgs, ... }:
let cfg = config.my.home.transmission-remote;
in
{
  options.my.home.transmission-remote = with lib; {
    enable = mkEnableOption "transmission-remote configuration";
  };

  config.home.packages = with pkgs;
    lib.mkIf cfg.enable ([ transmission-remote-gtk ]);
}