22 lines
254 B
Nix
22 lines
254 B
Nix
{
|
|
fleetModules,
|
|
...
|
|
}:
|
|
{
|
|
imports =
|
|
[
|
|
./hardware-configuration.nix
|
|
]
|
|
++ fleetModules [
|
|
"common"
|
|
"ssh"
|
|
"ccr"
|
|
"audio"
|
|
"dbus"
|
|
"bluetooth"
|
|
"kodi"
|
|
"udisks2"
|
|
];
|
|
|
|
ccr.enable = true;
|
|
}
|