23 lines
384 B
Nix
23 lines
384 B
Nix
{ suites, profiles, pkgs, ... }: {
|
|
imports = suites.graphic
|
|
++ [ ./hardware-configuration.nix ]
|
|
++ (with profiles;
|
|
[
|
|
boot.systemd-boot
|
|
|
|
networking.wireless
|
|
hardware.sound
|
|
hardware.amdgpu
|
|
# peripherals.printing
|
|
]
|
|
);
|
|
|
|
system.stateVersion = "21.11";
|
|
|
|
networking = {
|
|
useDHCP = false;
|
|
|
|
interfaces.wlan0.useDHCP = true;
|
|
};
|
|
|
|
}
|