1
0
Fork 0
mirror of https://github.com/youwen5/nixos.git synced 2025-02-28 22:31:11 -08:00
liminalOS/modules/linux/wsl/default.nix

13 lines
174 B
Nix
Raw Normal View History

2024-11-26 17:15:31 -08:00
{ inputs, ... }:
{
imports = [
inputs.nixos-wsl.nixosModules.default
];
wsl = {
enable = true;
defaultUser = "youwen";
useWindowsDriver = true;
};
}