blob: 5ce8eb083edde53f919c8b0fec07bb631af7ea3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
{ pkgs, ... }:
{
homebrew = {
enable = true;
brews = [
# Thunderbird requires GPGME in 'standard locations'
"gpgme"
];
};
# Necessary for using flakes on this system.
nix.settings.experimental-features = "nix-command flakes";
# $ darwin-rebuild changelog
system.stateVersion = 5;
nixpkgs.hostPlatform = "aarch64-darwin";
}
|