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