blob: 21e3e310d78427ff34e13c2c7809ea44e6878844 (
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
|
{ config, pkgs, lib, ...}:
{
nix.settings.experimental-features = "nix-command flakes";
nixpkgs.hostPlatform = "aarch64-darwin";
nixpkgs.config.allowUnfree = true;
users.users.schererleander.home = "/Users/schererleander";
system.primaryUser = "schererleander";
system.defaults = {
dock = {
autohide = true;
largesize = 48;
show-recents = false;
};
WindowManager.EnableStandardClickToShowDesktop = false;
finder = {
#ShowPathbar = true;
#ShowStatusBar = true;
_FXShowPosixPathInTitle = true;
_FXSortFoldersFirst = true;
};
controlcenter = {
Display = false;
FocusModes = false;
Sound = false;
};
loginwindow.GuestEnabled = false;
};
programs.zsh.enable = true;
homebrew = {
enable = true;
taps = [
"vladdoster/formulae"
];
brews = [
"openjdk@17"
"openjdk@21"
];
casks = [
"nextcloud"
"bambu-studio"
"vlc"
"vladdoster/formulae/vimari"
"arduino-ide"
];
masApps = {
"Goodnotes 6" = 1444383602;
"WhatsApp Messenger " = 310633997;
"Adguard for Safari" = 1440147259;
"WireGuard" = 1451685025;
"Infuse" = 1136220934;
};
onActivation.cleanup = "zap";
onActivation.autoUpdate = true;
onActivation.upgrade = true;
};
system.stateVersion = 5;
}
|