aboutsummaryrefslogtreecommitdiff
path: root/modules/hosts/lilith/configuration.nix
blob: 4abf0b19de357036ba53039a7a5e6674f9f1d9dd (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
{
  flake.modules.darwin.lilith =
    {
      ...
    }:

    let
      username = "schererleander";
    in
    {
      networking.hostName = "lilith";

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

      system.primaryUser = username;
      system.defaults = {
        dock = {
          autohide = true;
          largesize = 48;
          show-recents = false;
        };
        WindowManager.EnableStandardClickToShowDesktop = false;
        finder = {
          _FXShowPosixPathInTitle = true;
          _FXSortFoldersFirst = true;
        };
        controlcenter = {
          Display = false;
          FocusModes = false;
          Sound = false;
        };
        loginwindow.GuestEnabled = false;
      };

      homebrew = {
        enable = true;
        brews = [
          "openjdk@21"
        ];
        casks = [
          "anki"
          "mullvad-vpn"
          "nextcloud"
          "iterm2"
          "rectangle"
          "tailscale-app"
        ];
        greedyCasks = true;
        masApps = {
          "AdGuard Mini" = 1440147259;
          "Goodnotes: KI-Notizen, PDF" = 1444383602;
          "WhatsApp Messenger" = 310633997;
        };
        onActivation.cleanup = "zap";
        onActivation.autoUpdate = true;
        onActivation.upgrade = true;
      };

      nix = {
        enable = false;
        settings.experimental-features = [
          "nix-command"
          "flakes"
        ];
      };

      nixpkgs.config.allowUnfree = true;
      system.stateVersion = 6;
    };
}