1
0
Fork 0
forked from irl/nix-configs
irl-nix-configs/modules/home-manager/ops/ops.nix

23 lines
278 B
Nix
Raw Normal View History

2025-07-06 21:49:22 +01:00
{
config,
lib,
pkgs,
...
}:
let
cfg = config.feature.ops;
in
{
options.feature.ops = {
enable = lib.mkEnableOption "Setup DevOps tools";
};
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [
age
awscli2
opentofu
];
};
}