aboutsummaryrefslogtreecommitdiff
path: root/hosts/lilith/configuration.nix
blob: 2a35c74a4b0ffcd257701ff17f1b4e72b91f9136 (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
{
  pkgs,
  host,
  username,
  ...
}:

{
  networking.hostName = host;

  nx.user.${username} = {
    stateVersion = "25.11";
    packages = with pkgs; [
      htop
      ffmpeg
      wget

      zathura
      gemini-cli
      iterm2
      rectangle
      slack
      podman
      jetbrains.idea-community

      nerd-fonts.symbols-only
    ];
    sessionVariables = {
      PATH = "/opt/homebrew/opt/openjdk@21/bin:$PATH";
    };

    nx = {
      terminal.defaultShell = "zsh";

      editors.neovim = {
        enable = true;
        langs = {
          python = true;
          go = true;
          java = true;
          latex = true;
        };
      };
      git.enable = true;
      cli.opencode.enable = true;
      media = {
        spicetify.enable = true;
        nixcord.enable = true;
      };
      productivity = {
        obsidian.enable = true;
        latex.enable = true;
      };
    };
  };

  system.primaryUser = username;
  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;
  };

  homebrew = {
    enable = true;
    brews = [
      "openjdk@21"
    ];
    casks = [
      "nextcloud"
      "mullvad-vpn"
      "bambu-studio"
      "arduino-ide"
      "anki"
    ];
    onActivation.cleanup = "zap";
    onActivation.autoUpdate = true;
    onActivation.upgrade = true;
  };

  nix.enable = false;

  system.stateVersion = 5;
}