config/users/chloe/configuration.nix

28 lines
532 B
Nix

# Configuration applied to all of chloe's machines
{
pkgs,
userSettings,
...
}: {
environment.systemPackages = with pkgs; [
neovim
];
shared.darwin = {
macAppStoreApps = [
"adguard"
"magnet"
];
};
system.defaults = {
NSGlobalDomain = {
KeyRepeat = 1;
InitialKeyRepeat = 10;
};
CustomUserPreferences = {
NSGlobalDomain = {
# TODO: how to change system accent color
AppleHighlightColor = "1.000000 0.874510 0.701961 Orange";
};
};
};
}