2023-07-16 17:35:36 +01:00
|
|
|
{pkgs, ...}: let
|
|
|
|
username = "tux";
|
|
|
|
homeDirectory = "/Users/${username}";
|
|
|
|
in {
|
|
|
|
imports = [
|
|
|
|
../../home/shell/zsh.nix
|
|
|
|
../../home/git/personal.nix
|
|
|
|
../../home/ssh/personal.nix
|
2023-07-16 17:48:23 +01:00
|
|
|
../../home/tui
|
|
|
|
../../home/wezterm
|
2023-07-24 22:10:01 +01:00
|
|
|
../../home/emacs
|
2023-07-16 17:35:36 +01:00
|
|
|
];
|
|
|
|
home = {
|
|
|
|
inherit username homeDirectory;
|
|
|
|
stateVersion = "23.05";
|
2023-07-19 11:40:07 +01:00
|
|
|
packages = with pkgs; [gcc];
|
2023-07-16 17:35:36 +01:00
|
|
|
};
|
|
|
|
programs = {
|
|
|
|
home-manager.enable = true;
|
|
|
|
zsh = {
|
|
|
|
sessionVariables.CC = "${pkgs.gcc}/bin/gcc";
|
|
|
|
envExtra = ''
|
|
|
|
eval "$(/opt/homebrew/bin/brew shellenv)"
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
};
|
|
|
|
services.syncthing.enable = true;
|
|
|
|
}
|