139 lines
3.3 KiB
Nix
139 lines
3.3 KiB
Nix
{
|
|
config,
|
|
pkgs,
|
|
lib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../../modules/shared/vars.nix
|
|
../../modules/shared/nix.nix
|
|
../../modules/shared/extras.nix
|
|
../../modules/shared/modules.nix
|
|
|
|
../../modules/shared/home-manager.nix
|
|
./modules/icons.nix
|
|
];
|
|
|
|
environment.systemPackages = with pkgs; [
|
|
neovim
|
|
pinentry_mac
|
|
];
|
|
|
|
environment.customIcons = {
|
|
enable = true;
|
|
icons = [
|
|
{
|
|
path = "/Applications/Zen.app";
|
|
icon = "/Users/nmarks/.dotfiles/icons/Zen_icons/firefox.icns";
|
|
}
|
|
];
|
|
};
|
|
|
|
# Use a custom configuration.nix location.
|
|
#environment.darwinConfig = "$HOME/.dotfiles/hosts/laptop";
|
|
|
|
# Create /etc/zshrc that loads the nix-darwin environment.
|
|
programs = {
|
|
gnupg.agent.enable = true;
|
|
zsh.enable = true; # default shell on catalina
|
|
};
|
|
|
|
programs.zsh = {
|
|
interactiveShellInit = ''
|
|
if [[ $(${pkgs.procps}/bin/ps -p $PPID -o comm) != "fish" && -z ''${ZSH_EXUCTION_STRING} ]]
|
|
then
|
|
[[ -o login ]] && LOGIN_OPTION='--login' || LOGIN_OPTION=""
|
|
exec ${pkgs.fish}/bin/fish $LOGIN_OPTION
|
|
fi
|
|
'';
|
|
};
|
|
|
|
# Used for backwards compatibility, please read the changelog before changing.
|
|
# $ darwin-rebuild changelog
|
|
system.stateVersion = 6;
|
|
|
|
# Install fonts
|
|
fonts.packages = [
|
|
pkgs.iosevka
|
|
pkgs.nerd-fonts.symbols-only
|
|
pkgs.nerd-fonts.iosevka
|
|
];
|
|
|
|
services.tailscale.enable = true;
|
|
|
|
# Use homebrew to install casks and Mac App Store apps
|
|
homebrew = {
|
|
enable = true;
|
|
|
|
onActivation = {
|
|
autoUpdate = true;
|
|
cleanup = "none";
|
|
upgrade = true;
|
|
};
|
|
|
|
# taps = [
|
|
# "legcord/legcord"
|
|
# ];
|
|
|
|
brews = [
|
|
"imagemagick"
|
|
"opam"
|
|
];
|
|
|
|
casks = [
|
|
"battle-net"
|
|
"stremio"
|
|
"alt-tab"
|
|
"legcord"
|
|
"zulip"
|
|
"zen-browser"
|
|
];
|
|
|
|
masApps = {
|
|
"wireguard" = 1451685025;
|
|
};
|
|
};
|
|
|
|
security.pam.services.sudo_local = {
|
|
enable = true;
|
|
reattach = true;
|
|
touchIdAuth = true;
|
|
};
|
|
|
|
# set some OSX preferences that I always end up hunting down and changing.
|
|
system.defaults = {
|
|
# minimal dock
|
|
dock = {
|
|
autohide = false;
|
|
show-process-indicators = true;
|
|
show-recents = true;
|
|
static-only = true;
|
|
};
|
|
# a finder that tells me what I want to know and lets me work
|
|
finder = {
|
|
AppleShowAllExtensions = true;
|
|
ShowPathbar = true;
|
|
FXEnableExtensionChangeWarning = false;
|
|
};
|
|
|
|
CustomUserPreferences = {
|
|
launchd.user.agents.UserKeyMapping.serviceConfig = {
|
|
ProgramArguments = [
|
|
"/usr/bin/hidutil"
|
|
"property"
|
|
"--match"
|
|
"{"ProductID":0x0,"VendorID":0x0,"Product":"Apple Internal Keyboard / Trackpad"}"
|
|
"--set"
|
|
(
|
|
let
|
|
# https://developer.apple.com/library/archive/technotes/tn2450/_index.html
|
|
caps_lock = "0x700000039";
|
|
escape = "0x700000029";
|
|
in "{"UserKeyMapping":[{"HIDKeyboardModifierMappingDst":${escape},"HIDKeyboardModifierMappingSrc":${caps_lock}},{"HIDKeyboardModifierMappingDst":${caps_lock},"HIDKeyboardModifierMappingSrc":${escape}}]}"
|
|
)
|
|
];
|
|
RunAtLoad = true;
|
|
};
|
|
};
|
|
};
|
|
}
|