blob: 75df5271cccaf3c0ef9e738159cd538ba193f280 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
|
{ config
, pkgs
, ...
}: {
nixpkgs.overlays = [
(self: super: {
darwin-zsh-completions =
super.runCommand "darwin-zsh-completions-0.0.0"
{
preferLocalBuild = true;
} ''
mkdir -p $out/share/zsh/site-functions
cat <<-'EOF' > $out/share/zsh/site-functions/_darwin-rebuild
#compdef darwin-rebuild
#autoload
_nix-common-options
local -a _1st_arguments
_1st_arguments=(
'switch:Build, activate, and update the current generation'\
'build:Build without activating or updating the current generation'\
'check:Build and run the activation sanity checks'\
'changelog:Show most recent entries in the changelog'\
)
_arguments \
'--list-generations[Print a list of all generations in the active profile]'\
'--rollback[Roll back to the previous configuration]'\
{--switch-generation,-G}'[Activate specified generation]'\
'(--profile-name -p)'{--profile-name,-p}'[Profile to use to track current and previous system configurations]:Profile:_nix_profiles'\
'1:: :->subcmds' && return 0
case $state in
subcmds)
_describe -t commands 'darwin-rebuild subcommands' _1st_arguments
;;
esac
EOF
'';
})
];
home.packages = with pkgs; [ darwin-zsh-completions ];
programs.emacs.package = pkgs.emacs;
home.file.".hushlogin".text = "";
launchd.agents = {
home-manager-expire-generations = {
enable = true;
config = {
ProgramArguments = [
"${pkgs.home-manager}/bin/home-manager"
"expire-generations"
"-30 days"
];
KeepAlive = false;
RunAtLoad = false;
StartCalendarInterval = [{
Hour = 12;
Minute = 00;
Weekday = 6; # Saturday
}];
ProcessType = "Background";
LowPriorityBackgroundIO = true;
};
};
set-xdg-cache-home = {
enable = true;
config = {
ProgramArguments = [
"/bin/launchctl"
"setenv"
"XDG_CACHE_HOME"
config.xdg.cacheHome
];
RunAtLoad = true;
StandardErrorPath = "/dev/null";
StandardOutputPath = "/dev/null";
};
};
dark-light-mode = {
enable = true;
config = {
WatchPaths = [ "${config.home.homeDirectory}/Library/Preferences/.GlobalPreferences.plist" ];
ProgramArguments = [
"/bin/sh"
(
toString
(
pkgs.writeShellScript
"toggle-dark-light-mode"
''
if defaults read -g AppleInterfaceStyle &>/dev/null ; then
MODE="dark"
else
MODE="light"
fi
emacsSwitchTheme () {
if pgrep -q Emacs; then
if [[ $MODE == "dark" ]]; then
emacsclient --eval "(modus-themes-load-theme (cadr modus-themes-to-toggle))"
elif [[ $MODE == "light" ]]; then
emacsclient --eval "(modus-themes-load-theme (car modus-themes-to-toggle))"
fi
fi
}
emacsSwitchTheme $@
''
)
)
];
};
};
};
programs.zsh.shellAliases = {
da = "darwin-rebuild";
das = "darwin-rebuild switch";
drill = "command dig +noall +answer";
dig = "dig +noall +answer";
};
programs.zsh.envExtra = ''
SHELL_SESSIONS_DISABLE=1
path+=($HOME/Library/Python/3.9/bin)
'';
programs.ssh.extraConfig = ''
IdentityAgent /Users/alan/Library/Containers/com.maxgoedjen.Secretive.SecretAgent/Data/socket.ssh
'';
# Use GPG from GPGTools
programs.git.signing.gpgPath = "/usr/local/bin/gpg";
}
|