This commit is contained in:
2025-03-27 13:42:27 -04:00
parent e354c4e194
commit 4e82b684e5
17 changed files with 239 additions and 218 deletions

View File

@@ -0,0 +1,18 @@
{ lib, pkgs, config, namespace, ... }:
let
inherit (lib) mkIf;
cfg = config.${namespace}.programs.aws;
in
{
options.${namespace}.programs.aws = {
enable = lib.mkEnableOption "AWS";
};
config = mkIf cfg.enable {
home.packages = with pkgs; [
cw
awscli2
ssm-session-manager-plugin
];
};
}