summaryrefslogtreecommitdiff
path: root/systems/caroline/default.nix
blob: 0788cc79f8d3e39c22215db6a6046dc751021c8f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ 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;
}