feat(hosts): add doctr & penguin

This commit is contained in:
Felix Schröter 2024-01-30 21:44:02 +01:00
parent e60d1ebeb0
commit 4b1e8fe486
Signed by: felschr
GPG key ID: 671E39E6744C807D
6 changed files with 107 additions and 2 deletions

10
hosts/doctr.nix Normal file
View file

@ -0,0 +1,10 @@
{ self, inputs, ... }: {
perSystem = { self', pkgs, lib, ... }: {
packages.doctr = self.lib.mkOpenwrtImage {
inherit pkgs;
hostname = "doctr";
timezone = "Europe/Berlin";
ipaddr = "192.168.1.1";
};
};
}

10
hosts/penguin.nix Normal file
View file

@ -0,0 +1,10 @@
{ self, inputs, ... }: {
perSystem = { self', pkgs, lib, ... }: {
packages.penguin = self.lib.mkOpenwrtImage {
inherit pkgs;
hostname = "penguin";
timezone = "Europe/Berlin";
ipaddr = "192.168.0.1";
};
};
}