summaryrefslogtreecommitdiff
path: root/modules/darwin/profiles/headful.nix
blob: 023386b2bc6576597af021c0969e12d770e7d3f5 (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
29
30
31
32
33
{
  config,
  lib,
  pkgs,
  ...
}:
with lib;
let
  cfg = config.nixfiles.modules.profiles.headful;
in
{
  config = mkIf cfg.enable {
    nixfiles.modules.homebrew.enable = true;

    # I'm addicted to GNU...
    hm.home.packages = with pkgs; [
      coreutils
      findutils
      getopt
      gnugrep
      gnused
      gnutar
      gzip
      which
    ];

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