nixfiles/hosts/wsl/wsl.nix

26 lines
417 B
Nix
Raw Normal View History

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 = {
home.stateVersion = "24.05";
2023-10-14 12:35:20 +01:00
};
home-manager.users.chaos = {
home.stateVersion = "24.05";
2023-10-14 12:35:20 +01:00
};
networking.hostName = "wsl";
time.timeZone = "Europe/London";
system.stateVersion = "24.05";
2023-10-14 12:35:20 +01:00
}