Evie Litherland-Smith
10a44cbc2d
Move collection expressions from hosts/ into services/ as importable modules Remove service/hostname.nix collections Remove all imports from host/ expressions and include as modules in flake.nix Set sensible defaults that propagate to (I think) everything
19 lines
388 B
Nix
19 lines
388 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;
|
|
};
|
|
services.syncthing.enable = true;
|
|
}
|