30 lines
531 B
Nix
30 lines
531 B
Nix
{
|
|
inputs,
|
|
outputs,
|
|
vars,
|
|
flakeLib,
|
|
...
|
|
}: {
|
|
imports = [
|
|
#inputs.home-manager.nixosModules.home-manager
|
|
outputs.nixosModules.home-manager
|
|
outputs.nixosModules.base
|
|
outputs.nixosModules.wsl
|
|
];
|
|
|
|
wsl.enable = true;
|
|
boot.loader.systemd-boot.enable = false;
|
|
|
|
networking = {
|
|
inherit (vars) hostName domain;
|
|
};
|
|
|
|
home-manager.extraSpecialArgs = {
|
|
inherit inputs outputs vars;
|
|
};
|
|
home-manager.users = flakeLib.mkNixosHomeConfiguration {inherit vars;};
|
|
|
|
|
|
system.stateVersion = "23.11";
|
|
}
|