blob: b075dfb618a658ccdb61d14d57a4f71b33e9b041 (
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
|
{ pkgs, ... }:
{
homebrew = {
enable = true;
brews = [
# Thunderbird requires GPGME in 'standard locations'
"gpgme"
];
casks = [
"bentobox"
"bitwarden"
"jetbrains-toolbox"
"jordanbaird-ice"
"karabiner-elements"
"little-snitch"
"micro-snitch"
"monarch"
"notchnook"
"openmtp"
"orbstack"
"raycast"
"spotify"
"tailscale"
"transmission"
"transmission"
"yubico-yubikey-manager"
];
};
# Necessary for using flakes on this system.
nix.settings.experimental-features = "nix-command flakes";
# $ darwin-rebuild changelog
system.stateVersion = 5;
nixpkgs.hostPlatform = "aarch64-darwin";
}
|