Change structure

This commit is contained in:
2026-04-12 15:41:44 +02:00
parent 4ed0b94da5
commit 2802cfe28d
14 changed files with 7 additions and 10 deletions
+20
View File
@@ -0,0 +1,20 @@
{ lib, config, ... }:
with lib;
let
cfg = config.os.homebrew.microsoft;
in
{
options.os.homebrew.microsoft = {
enable = mkEnableOption "System microsoft homebrew service";
};
config = mkIf cfg.enable {
homebrew.casks = [
"microsoft-word"
"microsoft-excel"
"microsoft-powerpoint"
"microsoft-teams"
];
};
}