Evie Litherland-Smith
2bd6193286
Only sync pictures and zotero library using syncthing, moving the rest to NextCloud
18 lines
352 B
Nix
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;
|
|
};
|
|
}
|