nixos/home/Monarch/tux.nix

18 lines
467 B
Nix
Raw Normal View History

{ ... }:
2023-04-21 07:28:18 +01:00
{
imports = [ ../personal.nix ];
# 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-05-06 14:00:45 +01:00
services.syncthing.enable = true;
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";
programs.zsh.envExtra = ''
eval "$(/opt/homebrew/bin/brew shellenv)"
'';
2023-04-21 07:28:18 +01:00
}