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

{
  services.nix-daemon.enable = true;
  programs.zsh.enable = true;

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

  homebrew = {
    enable = true;
    taps = [];
    brews = [
      "openjdk@17"
      "openjdk@21"
    ];
    casks = [
      "nextcloud"
      "bambu-studio"
    ];
  };

  nixpkgs.hostPlatform = "aarch64-darwin";
  nixpkgs.config.allowUnfree = true;
  system.stateVersion = 5;
}