19 lines
178 B
Nix
19 lines
178 B
Nix
{
|
|
pkgs,
|
|
outputs,
|
|
inputs,
|
|
lib,
|
|
...
|
|
}:
|
|
{
|
|
imports = [
|
|
../shared
|
|
];
|
|
|
|
networking.hostName = "wsl";
|
|
|
|
wsl = {
|
|
enable = true;
|
|
defaultUser = "nixos";
|
|
};
|
|
}
|