add: remmina & thinkpad hardware mod

This commit is contained in:
2025-07-28 16:55:28 -04:00
parent 6b42b3cc22
commit e63dd8d5d1
3 changed files with 20 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
{ pkgs, lib, config, namespace, ... }:
let
inherit (lib) mkIf mkEnableOption;
cfg = config.${namespace}.programs.graphical.remmina;
in
{
options.${namespace}.programs.graphical.remmina = {
enable = mkEnableOption "Remmina";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
remmina
];
};
}