28 lines
495 B
Nix
28 lines
495 B
Nix
{
|
|
inputs, outputs, pkgs, vars, ...
|
|
}: {
|
|
imports = [
|
|
inputs.nixos-hardware.nixosModules.lenovo-thinkpad-t410
|
|
inputs.nur.nixosModules.nur
|
|
outputs.nixosModules.base
|
|
outputs.nixosModules.desktop
|
|
];
|
|
|
|
networking = {
|
|
inherit (vars) hostName domain;
|
|
networkmanager.enable = true;
|
|
};
|
|
|
|
environment = {
|
|
systemPackages = with pkgs; [
|
|
iw
|
|
];
|
|
};
|
|
|
|
programs.zsh.enable = true;
|
|
|
|
nixpkgs.hostPlatform = "x86_64-linux";
|
|
|
|
system.stateVersion = "23.05";
|
|
}
|