blob: 29c070bce6c7caa8f1b86ba9b39a02acf0b026ed (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
{ 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 ]);
}
|