nixos/hosts/Monarch/home.nix

30 lines
603 B
Nix
Raw Normal View History

{ pkgs, ... }:
let
username = "tux";
homeDirectory = "/Users/${username}";
in {
imports = [
../../home/shell/zsh.nix
../../home/git
../../home/ssh
../../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;
}