feat(hosts): add doctr & penguin
This commit is contained in:
parent
e60d1ebeb0
commit
4b1e8fe486
6 changed files with 107 additions and 2 deletions
hosts
10
hosts/doctr.nix
Normal file
10
hosts/doctr.nix
Normal 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
10
hosts/penguin.nix
Normal 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";
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue