blob: 3245eaf5df6f5bd5fe763750b9ba96fe3759bfc4 (
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
30
31
32
33
34
35
36
|
{ inputs, ... }:
{
imports = [
inputs.self.nixosModules.default
inputs.lix-module.nixosModules.default
];
borealis = {
profiles.personal.enable = true;
remote-builders = {
enable = true;
builders = {
atlas = true;
macstadium = true;
};
};
};
networking.hostName = "glados-wsl";
nixpkgs.hostPlatform = "x86_64-linux";
services = {
tailscale.enable = false;
};
system.stateVersion = "23.11";
wsl = {
enable = true;
defaultUser = "seth";
};
}
|