summaryrefslogtreecommitdiff
path: root/ext/openwrt/default.nix
diff options
context:
space:
mode:
authorseth <[email protected]>2024-03-09 18:32:41 -0500
committerseth <[email protected]>2024-03-09 18:33:10 -0500
commitcb951dba532fe4518da5dbf876096968afab0c9a (patch)
treead6425aa4956a2add835469e4fcaee1e7423565e /ext/openwrt/default.nix
parentc76dc8f7aeb99be22d2b256c12076a177f659321 (diff)
openwrt/turret: use new module and uci for everything
Diffstat (limited to 'ext/openwrt/default.nix')
-rw-r--r--ext/openwrt/default.nix13
1 files changed, 0 insertions, 13 deletions
diff --git a/ext/openwrt/default.nix b/ext/openwrt/default.nix
deleted file mode 100644
index dd163df..0000000
--- a/ext/openwrt/default.nix
+++ /dev/null
@@ -1,13 +0,0 @@
-{
- withSystem,
- inputs,
- ...
-}: {
- flake.legacyPackages.x86_64-linux = withSystem "x86_64-linux" ({pkgs, ...}: {
- openWrtImages = {
- turret = pkgs.callPackage ./turret {
- inherit (inputs) openwrt-imagebuilder;
- };
- };
- });
-}