Files
Nixos/modules/system/darwin/casks/microsoft.nix
T
2026-04-12 15:41:44 +02:00

21 lines
353 B
Nix

{ 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"
];
};
}