summaryrefslogtreecommitdiff
path: root/modules/darwin/profiles/headful.nix
blob: 2a4c77377cde11bbd855ea4ca479b186ff1b5172 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
  config,
  lib,
  ...
}:
with lib; let
  cfg = config.nixfiles.modules.profiles.headful;
in {
  config = mkIf cfg.enable {
    nixfiles.modules.homebrew.enable = true;

    homebrew.casks = [
      {name = "chromium";}
      {name = "firefox";}
      {name = "iterm2";}
      {name = "telegram-desktop";}
    ];
  };
}