mirror of
https://github.com/daylinmorgan/oizys.git
synced 2025-01-22 15:27:32 -06:00
10 lines
235 B
Nix
10 lines
235 B
Nix
{ inputs, enabled, ... }:
|
|
{
|
|
imports = [ inputs.nixos-wsl.nixosModules.default ];
|
|
wsl = enabled // {
|
|
defaultUser = "daylin";
|
|
};
|
|
|
|
# don't delete this you foo bar
|
|
system.stateVersion = "23.11"; # Did you read the comment?
|
|
}
|