nixos-config/hosts/doctr.nix

11 lines
239 B
Nix
Raw Normal View History

2024-01-30 21:44:02 +01:00
{ self, inputs, ... }: {
perSystem = { self', pkgs, lib, ... }: {
packages.doctr = self.lib.mkOpenwrtImage {
inherit pkgs;
hostname = "doctr";
timezone = "Europe/Berlin";
ipaddr = "192.168.1.1";
};
};
}