names are fun. for a few weeks i've been presenting publicly with the name 'clover', and i like it a lot. for me it's sort of a name tier, where friends can call me chloe for short, but my full name is clover. (and for people very close to me, there's more names to unlock). julia to fish is from a misunderstanding. i used the name julia with her a lot because it sounded more like a usual name, so i assumed it was. but no, that's just a nickname. an extra option. her preferred name is fish. simple as. i am sorry for this confusion.
44 lines
1,007 B
Nix
44 lines
1,007 B
Nix
# Configuration applied to all of clover's machines
|
|
{ pkgs, ... }:
|
|
{
|
|
# packages for all machines
|
|
environment.systemPackages = with pkgs; [
|
|
git
|
|
];
|
|
|
|
services.tailscale.enable = true;
|
|
|
|
# configuration for shared modules.
|
|
# all custom options in 'shared' for clarity.
|
|
shared.darwin = {
|
|
macAppStoreApps = [
|
|
"adguard"
|
|
"magnet"
|
|
];
|
|
};
|
|
|
|
# system preferences
|
|
system.defaults = {
|
|
NSGlobalDomain = {
|
|
KeyRepeat = 1;
|
|
InitialKeyRepeat = 10;
|
|
};
|
|
dock = {
|
|
show-recents = false;
|
|
};
|
|
CustomUserPreferences = {
|
|
NSGlobalDomain = {
|
|
# TODO: how to change system accent color
|
|
AppleHighlightColor = "1.000000 0.874510 0.701961 Orange";
|
|
|
|
# control how the fn keys operate
|
|
# 0 = default to media keys, 1 = default to FN1-12
|
|
"com.apple.keyboard.fnState" = 1;
|
|
|
|
NSUserKeyEquivalents = {
|
|
Minimize = "@~^\\Uf70f"; # set minimize to a stupidly hard key to press
|
|
};
|
|
};
|
|
};
|
|
};
|
|
}
|