diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-12-03 02:52:28 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-12-03 02:52:28 +0300 |
commit | cec9f7acd5e5e365563212c5144394f71dd90b27 (patch) | |
tree | 667b308a7241ab2e8f3fa4e2b53cc7888e876c68 /modules/darwin/profiles/headful.nix | |
parent | 2023-11-29 (diff) |
2023-12-03
Diffstat (limited to '')
-rw-r--r-- | modules/darwin/profiles/headful.nix | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/modules/darwin/profiles/headful.nix b/modules/darwin/profiles/headful.nix index 01b1951..826e45a 100644 --- a/modules/darwin/profiles/headful.nix +++ b/modules/darwin/profiles/headful.nix @@ -10,18 +10,21 @@ 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 = "macfuse";} {name = "telegram-desktop";} ]; }; |