mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 06:03:15 -06:00
18 lines
326 B
Nix
18 lines
326 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?
|
|
}
|