nixos-config/hosts/penguin.nix

19 lines
285 B
Nix
Raw Normal View History

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