summaryrefslogtreecommitdiffstats
path: root/hosts/kenosis/configuration.nix
blob: be792e9a50a9878b8b4b8a22c4823afd573c5e2b (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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
{
  config,
  pkgs,
  inputs,
  nvim,
  ...
}: {
  imports = [
    # ./legacy.nix
  ];

  networking = {
    computerName = "kenosis";
    hostName = "kenosis";
    localHostName = "kenosis";
  };
  # Primary user for user-specific settings (dock, etc.)
  system.primaryUser = "andrew";
  # List packages installed in system profile. To search by name, run:
  # $ nix-env -qaP | grep wget
  environment.systemPackages = with pkgs; [
    go
    nodejs
    yarn
    kubectl
    ffmpeg
    dbeaver-bin

    claude-code
    air
    pnpm
    librewolf
    lazygit
    fastfetch
    git
    go-swag
    blender
    temporal-cli
    corepack
    (python313.withPackages (ps:
      with ps; [
        numpy
      ]))
    imagemagick
    audacity
    goose
  ];

  homebrew = {
    enable = true;
    user = "andrew";

    taps = [
    ];
    brews = [
    ];
    casks = [
      "feishu"
      "surfshark"
      "google-chrome"
      "firefox"
      "chatgpt"
      "capcut"
      "docker"
      "musicbrainz-picard"
      "gimp"
    ];
  };

  # Dock configuration
  system.defaults.dock = {
    persistent-apps = [
      "/Applications/Nix Apps/Librewolf.app"
      "/Applications/Feishu.app"
      "/Applications/Ghostty.app"
      "/Applications/Nix Apps/DBeaver.app"
      "/Applications/Surfshark.app"
      "/System/Applications/Utilities/Activity Monitor.app"
    ];
  };
}