nixos/hosts/Monarch/home.nix
Evie Litherland-Smith efa0909c15 Switch to alacritty
Replace wezterm as it was setting extra shell variables that messed up
emacs internal terminal.

Add config to alacritty
2023-08-07 09:19:09 +01:00

30 lines
629 B
Nix

{ pkgs, ... }:
let
username = "tux";
homeDirectory = "/Users/${username}";
in {
imports = [
../../home/shell/zsh.nix
../../home/git/personal.nix
../../home/ssh/personal.nix
../../home/tui
../../home/alacritty
../../home/emacs
];
home = {
inherit username homeDirectory;
stateVersion = "23.05";
packages = with pkgs; [coreutils-prefixed];
};
programs = {
home-manager.enable = true;
zsh = {
sessionVariables.CC = "${pkgs.gcc}/bin/gcc";
envExtra = ''
eval "$(/opt/homebrew/bin/brew shellenv)"
'';
};
};
services.syncthing.enable = true;
}