oizys/hosts/naudiz/default.nix

20 lines
329 B
Nix
Raw Normal View History

2024-05-27 15:11:09 -05:00
{ inputs, enabled, ... }:
2024-05-27 14:58:45 -05:00
{
imports = [ inputs.nixos-wsl.nixosModules.default ];
oizys = {
nix-ld = enabled;
languages = [
"python"
"node"
];
};
2024-05-28 16:18:13 -05:00
wsl = enabled // {
defaultUser = "daylin";
};
2024-05-27 14:58:45 -05:00
# don't delete this you foo bar
system.stateVersion = "23.11"; # Did you read the comment?
}