summaryrefslogtreecommitdiff
path: root/systems/caroline/default.nix
blob: 9a6efae0b08465bb8480ee255c2e8d6a0871b390 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{config, ...}: {
  archetypes.personal.enable = true;

  homebrew.casks = [
    "altserver"
    "discord"
    "spotify"
    "prismlauncher"
  ];

  networking = {
    computerName = config.networking.hostName;
    hostName = "caroline";
  };

  nix.settings.trusted-users = ["seth"];
  nixpkgs.hostPlatform = "x86_64-darwin";

  services.tailscale.enable = true;

  system.stateVersion = 4;
}