nixos/systems/mobile/default.nix
2024-02-02 13:45:05 +01:00

21 lines
230 B
Nix

{ hostname }:
{
inputs,
lib,
pkgs,
...
}:
{
hardware = {
az-raspi4-usb = {
enable = true;
hostname = hostname;
ip = "10.213.0.1";
};
};
programs = {
az-nix-direnv.enable = true;
};
}