mirror of
https://github.com/lightly-toasted/nix-config.git
synced 2025-10-04 07:25:40 +00:00
15 lines
267 B
Nix
15 lines
267 B
Nix
{ inputs, ... }:
|
|
|
|
{
|
|
imports = [
|
|
inputs.nixos-wsl.nixosModules.default
|
|
];
|
|
|
|
wsl.enable = true;
|
|
wsl.defaultUser = "toast";
|
|
|
|
networking.hostName = "wsl";
|
|
|
|
system.stateVersion = "25.05";
|
|
nix.settings.experimental-features = [ "nix-command" "flakes" ];
|
|
}
|