1
0
Files
nix-shared/home/macos/home.nix

27 lines
488 B
Nix

{ ... }:
{
# Set default terminal environment variable
home.sessionVariables = {
TERMINAL = lib.mkForce "open -a Terminal.app .";
};
# Add NPM installed programs to PATH.
home.sessionPath = [
"/Users/tbingmann/.npm-global/bin"
];
# GnuPG configuration
programs.gpg = {
enable = true;
};
services.gpg-agent = {
enable = true;
enableScDaemon = false;
enableSshSupport = false;
pinentry = {
package = pkgs.pinentry_mac;
};
};
}