blob: 633e60c2d78d1adb2a5bbab36de6a5bd34eee81e (
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
29
|
{ config, inputs, ... }:
{
imports = [
inputs.self.darwinModules.default
];
borealis = {
profiles.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;
}
|