blob: 263d3ddf21bef950fcc268fa8a35ecf4d5ebb0d2 (
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
|
{ config, inputs, ... }:
{
imports = [
inputs.self.darwinModules.default
];
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;
}
|