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-22 00:57:30 -06:00
|
|
|
imalison.nixOverlay.enable = false;
|
2023-08-20 05:23:21 -06:00
|
|
|
modules.wsl.enable = true;
|
|
|
|
|
|
|
|
networking.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
|
|
|
}
|