nixos/hosts/Monarch/home.nix
Evie Litherland-Smith 2bd6193286 Reduce folders in syncthing
Only sync pictures and zotero library using syncthing, moving the rest
to NextCloud
2023-10-19 08:29:32 +01:00

18 lines
352 B
Nix

{ config, pkgs, ... }:
{
home = {
homeDirectory = "/Users/${config.home.username}";
packages = with pkgs; [ coreutils-prefixed ];
};
programs = {
zsh = {
sessionVariables.CC = "${pkgs.gcc}/bin/gcc";
envExtra = ''
eval "$(/opt/homebrew/bin/brew shellenv)"
'';
};
emacs.package = pkgs.emacs29;
};
}