2023-08-20 04:34:42 -06:00
|
|
|
{ lib, pkgs, config, inputs, forEachUser, ... }:
|
2023-07-26 13:14:00 -06:00
|
|
|
{
|
|
|
|
imports = [
|
2023-08-20 04:25:58 -06:00
|
|
|
../configuration.nix
|
2023-07-26 13:14:00 -06:00
|
|
|
];
|
|
|
|
|
2023-08-20 04:25:58 -06:00
|
|
|
modules.wls.enable = true;tworking.hostName = "jay-lenovo-wsl";
|
2023-07-27 22:05:43 -06:00
|
|
|
|
2023-07-26 13:14:00 -06:00
|
|
|
wsl.defaultUser = "kat";
|
|
|
|
system.stateVersion = "22.05";
|
2023-08-20 04:34:42 -06:00
|
|
|
|
|
|
|
home-manager.users = forEachUser {
|
|
|
|
home.stateVersion = "22.05";
|
|
|
|
};
|
2023-07-26 13:14:00 -06:00
|
|
|
}
|