summaryrefslogtreecommitdiff
path: root/modules/darwin/profiles/headful.nix
blob: 5484dfe8517aabf13599af29da7443c3fb86a28d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
  config,
  lib,
  pkgs,
  this,
  ...
}:
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";}
    ];
  };
}