18 lines
518 B
Nix
18 lines
518 B
Nix
{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 = "23.05";
|
|
home.packages = [pkgs.gcc];
|
|
programs.home-manager.enable = true;
|
|
programs.zsh = {
|
|
sessionVariables.CC = "${pkgs.gcc}/bin/gcc";
|
|
envExtra = ''
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
'';
|
|
};
|
|
services.syncthing.enable = true;
|
|
}
|