nixos/home/Monarch/tux.nix
Evie Litherland-Smith 5a18c254ac Move home-manager config into separate directories
Add platform specific hyprland/hyprpaper/waybar config into platform
specific home-manager files, better integration with nix and no
conflicing links
2023-05-16 09:13:59 +01:00

18 lines
467 B
Nix

{ ... }:
{
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";
home.stateVersion = "22.11";
services.syncthing.enable = true;
programs.zsh.shellAliases.update = "home-manager switch";
programs.fish.shellAbbrs.update = "home-manager switch";
programs.zsh.envExtra = ''
eval "$(/opt/homebrew/bin/brew shellenv)"
'';
}