dotfiles/nixos/machines/jay-lenovo-wsl.nix

19 lines
347 B
Nix
Raw Normal View History

{ lib, pkgs, config, inputs, forEachUser, ... }:
{
imports = [
../configuration.nix
];
imalison.nixOverlay.enable = false;
2024-09-26 14:15:27 -06:00
myModules.wsl.enable = true;
2023-08-20 05:23:21 -06:00
networking.hostName = "jay-lenovo-wsl";
wsl.defaultUser = "kat";
system.stateVersion = "22.05";
home-manager.users = forEachUser {
home.stateVersion = "22.05";
};
}