nixos/systems/test-raspi/default.nix

13 lines
307 B
Nix

{ custom, hostname }: { pkgs, ... }:
{
imports = [
(import "${custom.inputs.self}/systems/raspi4" {
ip = "10.7.89.40";
inherit hostname custom;
})
"${custom.inputs.self}/modules/docker"
"${custom.inputs.self}/modules/nix-direnv"
"${custom.inputs.self}/modules/tmux"
];
}