aboutsummaryrefslogtreecommitdiff
path: root/hosts/lilith/configuration.nix
blob: b8e6a203d9190cdab1d5ba99fa1abe275a35141b (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
{
  pkgs,
  host,
  inputs,
  username,
  ...
}:

{
  imports = [
    ../../modules
  ];

  users.users.${username}.home = "/Users/${username}";

  networking.hostName = host;

  home-manager.users.${username} = {
    home.username = username;
    home.homeDirectory = "/Users/${username}";
    programs.home-manager.enable = true;

    home.packages = with pkgs; [
      htop
      ffmpeg
      wget
      imagemagick

      zathura
      zoxide
      gemini-cli
      iterm2
      rectangle
      slack
      podman

      nerd-fonts.symbols-only
    ];
    home.stateVersion = "25.11";
  };

  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;
  };

  nx = {
    programs = {
      neovim.enable = true;
      zsh.enable = true;
      anki.enable = true;
      spicetify.enable = true;
      zed-editor.enable = true;
      obsidian.enable = true;
    };
  };

  system.stateVersion = 5;
}