24 lines
459 B
Nix
24 lines
459 B
Nix
{ suites, profiles, pkgs, lib, test, ... }: {
|
|
imports = test.flattenListSet {
|
|
suites = suites.graphic;
|
|
imports = [ ./hardware-configuration.nix ];
|
|
profiles = with profiles;
|
|
[
|
|
boot.grub
|
|
|
|
networking.wireless
|
|
|
|
(with hardware; [
|
|
sound
|
|
amdgpu
|
|
laptop
|
|
])
|
|
# peripherals.printing
|
|
];
|
|
};
|
|
|
|
system.stateVersion = "21.11";
|
|
|
|
networking.interfaces.wlan0.useDHCP = true;
|
|
|
|
}
|