diff --git a/flake.lock b/flake.lock index bff9901..e79c242 100644 --- a/flake.lock +++ b/flake.lock @@ -136,6 +136,18 @@ "type": "github" } }, + "liminix": { + "flake": false, + "locked": { + "narHash": "sha256-AOIoHjt5Q0+cJ5r5B5H3Cg/IDX13vR2dJLi3F6ZnD7E=", + "type": "file", + "url": "https://git.b4l.co.th/newedge/liminix/src/branch/fix-gl-ar750/" + }, + "original": { + "type": "file", + "url": "https://git.b4l.co.th/newedge/liminix/src/branch/fix-gl-ar750/" + } + }, "nix-darwin": { "inputs": { "nixpkgs": [ @@ -207,6 +219,7 @@ "devshell": "devshell", "flake-parts": "flake-parts", "import-tree": "import-tree", + "liminix": "liminix", "nixpkgs": "nixpkgs", "treefmt-nix": "treefmt-nix" } diff --git a/flake.nix b/flake.nix index e475ff3..c6421a2 100644 --- a/flake.nix +++ b/flake.nix @@ -21,6 +21,10 @@ url = "github:numtide/treefmt-nix"; inputs.nixpkgs.follows = "nixpkgs"; }; + liminix = { + url = "https://git.b4l.co.th/newedge/liminix/src/branch/fix-gl-ar750/"; + flake = false; + }; }; outputs = { diff --git a/routers/default.nix b/routers/default.nix new file mode 100644 index 0000000..0fa8ba8 --- /dev/null +++ b/routers/default.nix @@ -0,0 +1,8 @@ +{ inputs, ... }: +{ + flake.legacyPackages = { + yada-router = import "${inputs.liminix}/default.nix" { + liminix-config = import + }; + }; +}