26 lines
594 B
Nix
26 lines
594 B
Nix
{ suites, profiles, pkgs, lib, ... }: {
|
|
imports = lib.our.flattenListSet {
|
|
suites = with suites; [ base develop ];
|
|
imports = [ ./hardware-configuration.nix ];
|
|
profiles = with profiles;
|
|
[
|
|
networking.wireless
|
|
];
|
|
};
|
|
|
|
system.stateVersion = "21.11";
|
|
|
|
powerManagement.resumeCommands = "${pkgs.kmod}/bin/rmod atkbd; ${pkgs.kmod}/bin/modprobe atkbd reset=1";
|
|
|
|
modules = {
|
|
boot = {
|
|
grub.enable = true;
|
|
};
|
|
hardware = {
|
|
form.laptop = true;
|
|
gpu.amdgpu = true;
|
|
wireless.enable = true;
|
|
};
|
|
desktop.wm.enable = true;
|
|
};
|
|
}
|