2023-05-20 10:13:35 +01:00
|
|
|
{pkgs, ...}: {
|
2023-05-16 13:05:40 +01:00
|
|
|
imports = [
|
|
|
|
../env
|
|
|
|
../tui
|
|
|
|
../gui/wezterm.nix
|
|
|
|
../git/personal.nix
|
|
|
|
../ssh/personal.nix
|
|
|
|
];
|
2023-04-24 10:02:12 +01:00
|
|
|
# Home Manager needs a bit of information about you and the
|
|
|
|
# paths it should manage.
|
|
|
|
home.username = "tux";
|
|
|
|
home.homeDirectory = "/Users/tux";
|
2023-04-21 07:28:18 +01:00
|
|
|
home.stateVersion = "22.11";
|
2023-04-24 10:02:12 +01:00
|
|
|
|
2023-05-06 14:00:45 +01:00
|
|
|
services.syncthing.enable = true;
|
2023-05-02 08:22:53 +01:00
|
|
|
|
2023-05-20 10:13:35 +01:00
|
|
|
home.packages = [pkgs.gcc];
|
|
|
|
|
2023-05-28 19:05:55 +01:00
|
|
|
programs.fish.shellAbbrs.update = "home-manager switch";
|
2023-05-28 15:12:46 +01:00
|
|
|
programs.zsh = {
|
|
|
|
shellAliases.update = "home-manager switch";
|
|
|
|
sessionVariables.CC = "${pkgs.gcc}/bin/gcc";
|
|
|
|
envExtra = ''
|
|
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
|
|
'';
|
|
|
|
};
|
2023-04-21 07:28:18 +01:00
|
|
|
}
|