13 lines
212 B
Nix
13 lines
212 B
Nix
{ suites, profiles, pkgs, lib, ... }: {
|
|
imports = lib.lists.flatten [
|
|
(with suites; [
|
|
base
|
|
])
|
|
|
|
(with profiles; [
|
|
networking.wireless
|
|
])
|
|
];
|
|
|
|
modules.hardware.form.raspi = true;
|
|
}
|