30 lines
444 B
Nix
30 lines
444 B
Nix
{
|
|
lib,
|
|
pkgs,
|
|
config,
|
|
inputs,
|
|
...
|
|
}: {
|
|
imports = [
|
|
../configuration.nix
|
|
];
|
|
|
|
imalison.nixOverlay.enable = false;
|
|
myModules.wsl.enable = true;
|
|
|
|
networking.hostName = "jay-lenovo-wsl";
|
|
myModules.hostIdentity = {
|
|
emoticon = "💼";
|
|
tmux.background = "#15803d";
|
|
};
|
|
|
|
wsl.defaultUser = "kat";
|
|
system.stateVersion = "22.05";
|
|
|
|
home-manager.sharedModules = [
|
|
{
|
|
home.stateVersion = "22.05";
|
|
}
|
|
];
|
|
}
|