universe/hosts/Infini-SWIFT/default.nix

26 lines
586 B
Nix

{ suites, profiles, pkgs, lib, ... }: {
imports = lib.our.flattenListSet {
suites = with suites; [ graphic develop ];
imports = [ ./hardware-configuration.nix ];
profiles = with profiles;
[
boot.grub
networking.wireless
(with hardware; [
sound
gpu.amdgpu
laptop
])
# peripherals.printing
];
};
system.stateVersion = "21.11";
powerManagement.resumeCommands = "${pkgs.kmod}/bin/rmod atkbd; ${pkgs.kmod}/bin/modprobe atkbd reset=1";
networking.interfaces.wlan0.useDHCP = true;
}