universe/hosts/Infini-SWIFT/default.nix

19 lines
341 B
Nix

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