mirror of
https://github.com/kp2pml30/dotfiles.git
synced 2026-02-16 23:34:42 +04:00
14 lines
189 B
Nix
14 lines
189 B
Nix
{ pkgs
|
|
, inputs
|
|
, ...
|
|
}:
|
|
{
|
|
imports = [
|
|
inputs.nixos-wsl.nixosModules.default
|
|
];
|
|
wsl = {
|
|
enable = true;
|
|
defaultUser = "kp2pml30";
|
|
wslConf.interop.appendWindowsPath = false;
|
|
};
|
|
}
|