home: add trgui

This commit is contained in:
Bruno BELANYI 2025-08-26 13:07:41 +00:00
parent a889dfbb1a
commit 31147abd91
2 changed files with 18 additions and 0 deletions

View file

@ -38,6 +38,7 @@
./ssh
./terminal
./tmux
./trgui
./udiskie
./vim
./wget

View file

@ -0,0 +1,17 @@
{ config, lib, pkgs, ... }:
let
cfg = config.my.home.trgui;
in
{
options.my.home.trgui = with lib; {
enable = mkEnableOption "Transmission GUI onfiguration";
package = mkPackageOption pkgs "TrguiNG" { default = "trgui-ng"; };
};
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
cfg.package
];
};
}