configurations for my servers and desktops
nix
nixos
flake
dots
dotfiles
1{pkgs, ...}: {
2 networking.hostName = "d-macbook";
3
4 homebrew = {
5 casks = [
6 "affinity"
7 "bambu-studio"
8 "discord"
9 "font-sf-compact"
10 "font-sf-mono"
11 "font-sf-pro"
12 "ghostty"
13 "glide"
14 "godot"
15 "hammerspoon"
16 "helium-browser"
17 "hytale"
18 "iina"
19 "inkscape"
20 "keka"
21 "meshlab"
22 "moonlight"
23 "motrix"
24 "mpluginmanager"
25 "musescore"
26 "netnewswire"
27 "obsidian"
28 "omnidisksweeper"
29 "onyx"
30 "prismlauncher"
31 "rnnoise"
32 "roblox"
33 "robloxstudio"
34 "rockboxutility"
35 "sf-symbols"
36 "signal"
37 "steam"
38 "tailscale-app"
39 "transmission"
40 "utm"
41 "valhalla-freq-echo"
42 "valhalla-space-modulator"
43 "valhalla-supermassive"
44 "visual-studio-code"
45 "zed"
46 ];
47 };
48
49 environment.systemPackages = with pkgs; [
50 cinny-desktop
51 ];
52}