blob: bf9c10d02d427648c11b8211dcc5f29b6350f59b (
plain) (
blame)
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
|
{
config,
pkgs,
inputs,
customNeovim,
...
}: {
networking = {
computerName = "bear";
hostName = "bear";
localHostName = "bear";
};
# Primary user for user-specific settings (dock, etc.)
system.primaryUser = "andrewmontgomery";
# List packages installed in system profile. To search by name, run:
# $ nix-env -qaP | grep wget
environment.systemPackages = with pkgs; [
customNeovim.neovim
senpai
mpv
];
homebrew = {
enable = true;
user = "andrewmontgomery";
taps = [
];
brews = [
];
casks = [
"keepassxc"
"protonvpn"
"selfcontrol"
"kdenlive"
"audacity"
"steam"
];
};
# Dock configuration
system.defaults.dock = {
persistent-apps = [
"/System/Applications/Reminders.app"
"/System/Applications/Calendar.app"
"/System/Applications/Music.app"
"/System/Applications/Messages.app"
"/Applications/KeePassXC.app"
"/Applications/Ghostty.app"
# "/Applications/Nix Apps/Brave Browser.app"
"/Applications/Nix Apps/LibreWolf.app"
# "/Applications/Nix Apps/UTM.app"
"/System/Applications/System Settings.app"
];
};
}
|