mirror of
https://github.com/youwen5/nixos.git
synced 2024-11-29 03:53:50 -08:00
12 lines
174 B
Nix
12 lines
174 B
Nix
{ inputs, ... }:
|
|
{
|
|
imports = [
|
|
inputs.nixos-wsl.nixosModules.default
|
|
];
|
|
|
|
wsl = {
|
|
enable = true;
|
|
defaultUser = "youwen";
|
|
useWindowsDriver = true;
|
|
};
|
|
}
|