aboutsummaryrefslogtreecommitdiff
path: root/hosts/darwin/configuration.nix
blob: 4167394b0352ebae4da995253f68f169b7c082b5 (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
{ config, pkgs, lib, ...}:

{
  services.nix-daemon.enable = true;
  nix.settings.experimental-features = "nix-command flakes";
  nixpkgs.hostPlatform = "aarch64-darwin";
  nixpkgs.config.allowUnfree = true;

  users.users.schererleander = {
    home = "/Users/schererleander";
    shell = pkgs.zsh;
  };

  system.defaults = {
    dock.autohide = true;
  };

  programs.zsh.enable = true;

  homebrew = {
    enable = true;
    taps = [];
    brews = [
      "openjdk@17"
      "openjdk@21"
    ];
    casks = [
      "nextcloud"
      "bambu-studio"
    ];
    masApps = {
      "Goodnotes 6" = 1444383602;
      "WhatsApp Messenger " = 310633997;
      "Adguard for Safari" = 1440147259;
      "WireGuard" = 1451685025;
      "Infuse" = 1136220934;
    };
    onActivation.cleanup = "zap";
    onActivation.autoUpdate = true;
    onActivation.upgrade = true;
  };

  system.stateVersion = 5;
}