aboutsummaryrefslogtreecommitdiff
path: root/hosts/darwin/configuration.nix
blob: 019cba85acda457acd446fc6eff1133497f5535f (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
{ 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 = [];
    casks = [
      "nextcloud"
    ];
  };

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