summaryrefslogtreecommitdiff
path: root/modules/darwin/profiles/headful.nix
blob: 01b1951bd3e5b3db5e77b0bf9f4e0ec38aac769a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{
  config,
  lib,
  pkgs,
  ...
}:
with lib; let
  cfg = config.nixfiles.modules.profiles.headful;
in {
  config = mkIf cfg.enable {
    nixfiles.modules.homebrew.enable = true;

    hm.home.packages = with pkgs; [
      coreutils
      findutils
      gnugrep
      gnused
      gnutar
    ];

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