21 lines
357 B
Nix
21 lines
357 B
Nix
{ lib, config, ... }:
|
|
with lib;
|
|
let
|
|
cfg = config.home.homebrew.microsoft;
|
|
in
|
|
{
|
|
options.home.homebrew.microsoft = {
|
|
enable = mkEnableOption "System microsoft homebrew service";
|
|
};
|
|
config = mkIf cfg.enable {
|
|
|
|
homebrew.casks = [
|
|
"microsoft-word"
|
|
"microsoft-excel"
|
|
"microsoft-powerpoint"
|
|
"microsoft-teams"
|
|
];
|
|
|
|
};
|
|
}
|