nixos/systems/test-raspi/default.nix

14 lines
273 B
Nix

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