2023-10-16 18:17:28 +01:00
|
|
|
{tree, ...}: {
|
|
|
|
imports = with tree; [
|
2023-10-14 12:35:20 +01:00
|
|
|
users.root
|
|
|
|
users.chaos
|
|
|
|
profiles.sshd
|
|
|
|
|
|
|
|
presets.nixos.wslBase
|
|
|
|
|
|
|
|
profiles.cross.arm64
|
|
|
|
profiles.remoteBuilders
|
|
|
|
];
|
|
|
|
|
|
|
|
home-manager.users.root = {
|
2024-05-25 21:10:26 +01:00
|
|
|
home.stateVersion = "24.05";
|
2023-10-14 12:35:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
home-manager.users.chaos = {
|
2024-05-25 21:10:26 +01:00
|
|
|
home.stateVersion = "24.05";
|
2023-10-14 12:35:20 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
networking.hostName = "wsl";
|
|
|
|
time.timeZone = "Europe/London";
|
|
|
|
|
2024-05-25 21:10:26 +01:00
|
|
|
system.stateVersion = "24.05";
|
2023-10-14 12:35:20 +01:00
|
|
|
}
|