31 lines
615 B
Nix
31 lines
615 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/wezterm
|
|
];
|
|
home = {
|
|
inherit username homeDirectory;
|
|
stateVersion = "23.05";
|
|
packages = with pkgs; [
|
|
gcc
|
|
neovide
|
|
];
|
|
};
|
|
programs = {
|
|
home-manager.enable = true;
|
|
zsh = {
|
|
sessionVariables.CC = "${pkgs.gcc}/bin/gcc";
|
|
envExtra = ''
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
'';
|
|
};
|
|
};
|
|
services.syncthing.enable = true;
|
|
}
|