dotfiles/nixos/machines/jay-lenovo-wsl.nix
2023-08-20 11:23:21 +00:00

18 lines
307 B
Nix

{ lib, pkgs, config, inputs, forEachUser, ... }:
{
imports = [
../configuration.nix
];
modules.wsl.enable = true;
networking.hostName = "jay-lenovo-wsl";
wsl.defaultUser = "kat";
system.stateVersion = "22.05";
home-manager.users = forEachUser {
home.stateVersion = "22.05";
};
}