diff options
author | Azat Bahawi <azat@bahawi.net> | 2023-07-03 11:27:19 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2023-07-03 11:27:19 +0300 |
commit | c80598d4e4ffea73647b2ea8440a6080596968fe (patch) | |
tree | a6ca4bb82ec20df18022988fa359126fc877d5da /modules/darwin/profiles | |
parent | 2023-06-21 (diff) |
2023-07-03
Diffstat (limited to '')
-rw-r--r-- | modules/darwin/profiles/headful.nix | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/modules/darwin/profiles/headful.nix b/modules/darwin/profiles/headful.nix index 2a4c773..c50c657 100644 --- a/modules/darwin/profiles/headful.nix +++ b/modules/darwin/profiles/headful.nix @@ -1,6 +1,7 @@ { config, lib, + pkgs, ... }: with lib; let @@ -9,6 +10,14 @@ in { config = mkIf cfg.enable { nixfiles.modules.homebrew.enable = true; + hm.home.packages = with pkgs; [ + coreutils + findutils + gnugrep + gnused + gnutar + ]; + homebrew.casks = [ {name = "chromium";} {name = "firefox";} |