{pkgs, ...}: { imports = [../../home/personal.nix ../../home/gui/wezterm.nix]; # Home Manager needs a bit of information about you and the # paths it should manage. home.username = "tux"; home.homeDirectory = "/Users/tux"; home.stateVersion = "22.11"; home.packages = [pkgs.gcc]; programs.zsh = { sessionVariables.CC = "${pkgs.gcc}/bin/gcc"; envExtra = '' eval "$(/opt/homebrew/bin/brew shellenv)" ''; }; services.syncthing.enable = true; }