{ 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";} ]; }; }