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