28 lines
636 B
Nix
28 lines
636 B
Nix
{pkgs, ...}: {
|
|
imports = [
|
|
../env
|
|
../tui
|
|
../gui/wezterm.nix
|
|
../git/personal.nix
|
|
../ssh/personal.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";
|
|
|
|
services.syncthing.enable = true;
|
|
|
|
home.packages = [pkgs.gcc];
|
|
|
|
programs.fish.shellAbbrs.update = "home-manager switch";
|
|
programs.zsh = {
|
|
shellAliases.update = "home-manager switch";
|
|
sessionVariables.CC = "${pkgs.gcc}/bin/gcc";
|
|
envExtra = ''
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
'';
|
|
};
|
|
}
|