config/users/chloe/configuration.nix

29 lines
532 B
Nix
Raw Normal View History

# Configuration applied to all of chloe's machines
{
pkgs,
userSettings,
...
}: {
2025-04-21 13:04:42 -07:00
environment.systemPackages = with pkgs; [
neovim
];
shared.darwin = {
macAppStoreApps = [
"adguard"
"magnet"
];
2024-09-27 15:09:44 -07:00
};
system.defaults = {
NSGlobalDomain = {
KeyRepeat = 1;
InitialKeyRepeat = 10;
};
CustomUserPreferences = {
NSGlobalDomain = {
# TODO: how to change system accent color
AppleHighlightColor = "1.000000 0.874510 0.701961 Orange";
};
};
2024-10-05 14:47:09 -07:00
};
2024-09-27 15:09:44 -07:00
}