nixos/systems/test-raspi/default.nix

13 lines
307 B
Nix
Raw Normal View History

2023-01-04 19:22:58 +01:00
{ custom, hostname }: { pkgs, ... }:
{
imports = [
(import "${custom.inputs.self}/systems/raspi4" {
ip = "10.7.89.40";
inherit hostname custom;
})
2023-05-29 12:26:02 +02:00
"${custom.inputs.self}/modules/docker"
"${custom.inputs.self}/modules/nix-direnv"
2023-01-04 19:22:58 +01:00
"${custom.inputs.self}/modules/tmux"
];
}