20 lines
385 B
Nix
20 lines
385 B
Nix
{ suites, profiles, pkgs, ... }: {
|
|
imports = suites.graphic
|
|
++ [ ./hardware-configuration.nix ]
|
|
++ (with profiles;
|
|
[
|
|
boot.systemd-boot
|
|
|
|
networking.wireless
|
|
hardware.sound
|
|
hardware.nvidia
|
|
# peripherals.printing
|
|
]);
|
|
|
|
system.stateVersion = "21.05";
|
|
|
|
networking.interfaces = {
|
|
eth0.useDHCP = true;
|
|
wlp41s0.useDHCP = true;
|
|
};
|
|
}
|