14 lines
270 B
Nix
14 lines
270 B
Nix
{ suites, profiles, pkgs, lib, ... }: {
|
|
imports = lib.our.flattenListSet {
|
|
suites = suites.graphic;
|
|
imports = [ ];
|
|
profiles = with profiles; [
|
|
boot.grub
|
|
|
|
networking.wireless
|
|
hardware.sound
|
|
];
|
|
};
|
|
|
|
services.fprintd.enable = true;
|
|
}
|