16 lines
236 B
Nix
16 lines
236 B
Nix
{ suites, profiles, pkgs, lib, ... }: {
|
|
imports = lib.lists.flatten [
|
|
(with suites; [
|
|
base
|
|
])
|
|
|
|
(with profiles; [
|
|
(with hardware; [
|
|
rpi
|
|
wireless
|
|
])
|
|
|
|
networking.wireless
|
|
])
|
|
];
|
|
}
|