universe/hosts/Infini-FRAMEWORK/default.nix

21 lines
360 B
Nix

{ suites, profiles, pkgs, lib, ... }: {
imports = lib.flattenListSet {
suites = suites.graphic;
imports = [ ];
profiles = with profiles; [
boot.grub
networking.wireless
(with hardware; [
sound
laptop
gpu.intel
])
];
};
system.stateVersion = "21.11";
services.fprintd.enable = true;
}