28 lines
440 B
Nix
28 lines
440 B
Nix
{
|
|
lib,
|
|
username,
|
|
inputs,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
inputs.nixos-wsl.nixosModules.wsl
|
|
];
|
|
wsl.enable = true;
|
|
wsl.defaultUser = username;
|
|
|
|
services.openssh = {
|
|
enable = true;
|
|
settings = {
|
|
# Forbid root login through SSH.
|
|
PermitRootLogin = "no";
|
|
PasswordAuthentication = true;
|
|
};
|
|
};
|
|
|
|
# fix vscode remote
|
|
programs.nix-ld.enable = true;
|
|
|
|
nixpkgs.hostPlatform = lib.mkForce "x86_64-linux";
|
|
}
|