feat: add Raspberry Pi configuraation

This commit is contained in:
Infinidoge 2021-10-14 10:43:26 -04:00
parent 68c94811ff
commit 25db8bedfa
2 changed files with 45 additions and 0 deletions

View file

@ -0,0 +1,13 @@
{ suites, profiles, pkgs, lib, ... }: {
imports = lib.lists.flatten [
(with suites; [
base
])
(with profiles; [
hardware.rpi
networking.wireless
])
];
}