flake/users/guanranwang/home-manager/profiles/graphical-stuff/darwin/default.nix

67 lines
1.7 KiB
Nix
Raw Normal View History

2023-09-19 00:17:43 +00:00
{
config,
pkgs,
lib,
...
}: {
2023-09-19 00:17:43 +00:00
home = {
activation = {
2023-10-09 06:52:33 +00:00
# Workaround for spotlight indexing
# https://github.com/nix-community/home-manager/issues/1341#issuecomment-1705731962_
2023-09-19 00:17:43 +00:00
trampolineApps = let
apps = pkgs.buildEnv {
name = "home-manager-applications";
paths = config.home.packages;
pathsToLink = "/Applications";
};
in
lib.hm.dag.entryAfter ["writeBoundary"] ''
toDir="$HOME/Applications/Home Manager Trampolines"
fromDir="${apps}/Applications/"
rm -rf "$toDir"
mkdir "$toDir"
(
cd "$fromDir"
for app in *.app; do
/usr/bin/osacompile -o "$toDir/$app" -e 'do shell script "open '$fromDir/$app'"'
done
)
'';
setSystemProxy = let
networksetup = /usr/sbin/networksetup;
in
lib.hm.dag.entryAfter ["writeBoundary"] ''
${networksetup} -setwebproxystate "Wi-fi" on
${networksetup} -setwebproxy "Wi-fi" 127.0.0.1 7890
${networksetup} -setwebproxystate "Ethernet" on
${networksetup} -setwebproxy "Ethernet" 127.0.0.1 7890
'';
2023-09-19 00:17:43 +00:00
};
packages = with pkgs; [
## GUI
### Tools
keka # un-archive-r
iterm2
### Misc
element-desktop
2023-09-19 00:17:43 +00:00
];
};
# macOS don't have fontconfig
programs = let
monospace = "JetBrainsMono Nerd Font";
in {
2023-11-14 03:22:17 +00:00
### VSCode
vscode.userSettings."editor.fontFamily" = "${monospace}";
2023-09-19 00:17:43 +00:00
2023-11-14 03:22:17 +00:00
### Alacritty
2023-09-19 00:17:43 +00:00
alacritty.settings.font = {
2023-11-14 03:22:17 +00:00
normal.family = "${monospace}";
bold.family = "${monospace}";
bold_italic.family = "${monospace}";
italic.family = "${monospace}";
2023-09-19 00:17:43 +00:00
};
};
}