feat: refactor home-manager configs

This commit is contained in:
Iain Learmonth 2025-07-06 21:49:22 +01:00
parent 442c9051ba
commit fca82b60ce
13 changed files with 355 additions and 150 deletions

View file

@ -0,0 +1,22 @@
{
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
];
};
}