nixos-config/hosts/penguin.nix

11 lines
243 B
Nix
Raw Normal View History

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