2023-05-15 11:12:17 +01:00
|
|
|
{ ... }:
|
2023-04-21 07:28:18 +01:00
|
|
|
{
|
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-06 06:55:45 +01:00
|
|
|
programs.zsh.shellAliases.update = "home-manager switch";
|
2023-05-06 14:00:45 +01:00
|
|
|
programs.fish.shellAbbrs.update = "home-manager switch";
|
2023-04-24 10:02:12 +01:00
|
|
|
programs.zsh.envExtra = ''
|
|
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
|
|
'';
|
2023-04-21 07:28:18 +01:00
|
|
|
}
|