init commit
This commit is contained in:
12
devices/gli-repeater-img.nix
Normal file
12
devices/gli-repeater-img.nix
Normal file
@@ -0,0 +1,12 @@
|
||||
{ pkgs ? import <nixpkgs> {}}:
|
||||
pkgs.callPackage ../buildOpenwrt.nix {
|
||||
target = "ar71xx";
|
||||
arch = "generic";
|
||||
version= "19.07.4";
|
||||
profile = "gl-inet-6416A-v1";
|
||||
packages = [
|
||||
"luci-ssl"
|
||||
"luci-proto-wireguard"
|
||||
"luci-app-wireguard"
|
||||
];
|
||||
}
|
||||
17
devices/my-router-img.nix
Normal file
17
devices/my-router-img.nix
Normal file
@@ -0,0 +1,17 @@
|
||||
{ pkgs ? import <nixpkgs> {}}:
|
||||
pkgs.callPackage ../buildOpenwrt.nix {
|
||||
target = "mvebu";
|
||||
arch = "cortexa9";
|
||||
version= "19.07.4";
|
||||
profile = "linksys_wrt1200ac";
|
||||
packages = [
|
||||
"adblock"
|
||||
"luci-ssl"
|
||||
"luci-proto-wireguard"
|
||||
"luci-app-wireguard"
|
||||
"luci-app-adblock"
|
||||
"luci-app-openvpn"
|
||||
"openvpn-openssl"
|
||||
"tcpdump-mini"
|
||||
];
|
||||
}
|
||||
8
devices/pi-img.nix
Normal file
8
devices/pi-img.nix
Normal file
@@ -0,0 +1,8 @@
|
||||
{ pkgs ? import <nixpkgs> {}}:
|
||||
pkgs.callPackage ../buildOpenwrt.nix {
|
||||
target = "brcm2708";
|
||||
arch = "bcm2708";
|
||||
version= "19.07.4";
|
||||
profile = "rpi";
|
||||
packages = ["luci-ssl"];
|
||||
}
|
||||
Reference in New Issue
Block a user