tvl-depot/home/platforms/darwin.nix
Griffin Smith 9036dc7c32 Beginnings of config for Darwin machines
Split out a platforms/ directory with a linux.nix and darwin.nix, and
starting splitting things out between the two
2020-05-26 10:43:19 -04:00

24 lines
479 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
home.packages = with pkgs; [
coreutils
gnupg
pinentry_mac
];
home.activation.linkApplications = lib.hm.dag.entryAfter ["writeBoundary"] ''
$DRY_RUN_CMD ln -sf $VERBOSE_ARG \
~/.nix-profile/Applications/* ~/Applications/
'';
programs.zsh.initExtra = ''
export NIX_PATH=$HOME/.nix-defexpr/channels:$NIX_PATH
if [[ "$TERM" == "alacritty" ]]; then
export TERM="xterm-256color"
fi
'';
}