2025-05-05 23:56:54 -07:00
|
|
|
# Configuration applied to all of chloe's machines
|
2025-05-06 17:20:37 -07:00
|
|
|
{ pkgs, ... }: {
|
|
|
|
# packages for all machines
|
2025-04-21 13:04:42 -07:00
|
|
|
environment.systemPackages = with pkgs; [
|
|
|
|
neovim
|
|
|
|
];
|
2025-05-06 17:20:37 -07:00
|
|
|
# configuration for shared modules.
|
|
|
|
# all custom options in 'shared' for clarity.
|
2025-05-05 23:56:54 -07:00
|
|
|
shared.darwin = {
|
|
|
|
macAppStoreApps = [
|
|
|
|
"adguard"
|
|
|
|
"magnet"
|
|
|
|
];
|
2024-09-27 15:09:44 -07:00
|
|
|
};
|
2025-05-06 17:20:37 -07:00
|
|
|
# system preferences
|
2025-05-05 23:56:54 -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
|
|
|
}
|