mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
23 lines
332 B
Nix
23 lines
332 B
Nix
|
{
|
||
|
inputs,
|
||
|
enabled,
|
||
|
...
|
||
|
}:
|
||
|
|
||
|
{
|
||
|
imports = [ inputs.nixos-wsl.nixosModules.default ];
|
||
|
oizys = {
|
||
|
nix-ld = enabled;
|
||
|
languages = [
|
||
|
|
||
|
"python"
|
||
|
"node"
|
||
|
];
|
||
|
};
|
||
|
wsl.enable = true;
|
||
|
wsl.defaultUser = "daylin";
|
||
|
|
||
|
# don't delete this you foo bar
|
||
|
system.stateVersion = "23.11"; # Did you read the comment?
|
||
|
}
|