diff --git a/flake.lock b/flake.lock index fca4b01..9284449 100644 --- a/flake.lock +++ b/flake.lock @@ -18,32 +18,6 @@ "type": "github" } }, - "ixx": { - "inputs": { - "flake-utils": [ - "search", - "flake-utils" - ], - "nixpkgs": [ - "search", - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1729544999, - "narHash": "sha256-YcyJLvTmN6uLEBGCvYoMLwsinblXMkoYkNLEO4WnKus=", - "owner": "NuschtOS", - "repo": "ixx", - "rev": "65c207c92befec93e22086da9456d3906a4e999c", - "type": "github" - }, - "original": { - "owner": "NuschtOS", - "ref": "v0.0.5", - "repo": "ixx", - "type": "github" - } - }, "nixpkgs": { "locked": { "lastModified": 1729348609, @@ -63,32 +37,7 @@ "root": { "inputs": { "flake-utils": "flake-utils", - "nixpkgs": "nixpkgs", - "search": "search" - } - }, - "search": { - "inputs": { - "flake-utils": [ - "flake-utils" - ], - "ixx": "ixx", - "nixpkgs": [ - "nixpkgs" - ] - }, - "locked": { - "lastModified": 1729549270, - "narHash": "sha256-G9lO/8TOASzNKZObjoCtJMdK1XiUBmgS1i/5JZOheVY=", - "owner": "nuschtos", - "repo": "search", - "rev": "19cc9b2f5abed4c59da4293f0131b701382fb5b1", - "type": "github" - }, - "original": { - "owner": "nuschtos", - "repo": "search", - "type": "github" + "nixpkgs": "nixpkgs" } }, "systems": { diff --git a/flake.nix b/flake.nix index 943e027..3d44c5c 100644 --- a/flake.nix +++ b/flake.nix @@ -5,16 +5,9 @@ flake-utils.url = "github:numtide/flake-utils"; # if changed, also update .github/workflows/flake-eval.yaml nixpkgs.url = "github:NuschtOS/nuschtpkgs/nixos-unstable"; - search = { - url = "github:nuschtos/search"; - inputs = { - flake-utils.follows = "flake-utils"; - nixpkgs.follows = "nixpkgs"; - }; - }; }; - outputs = { self, flake-utils, nixpkgs, search, ... }: + outputs = { self, flake-utils, nixpkgs, ... }: let inherit (nixpkgs) lib; src = builtins.filterSource (path: type: type == "directory" || lib.hasSuffix ".nix" (baseNameOf path)) ./.; @@ -78,23 +71,6 @@ name = "debugging-tools"; paths = import ./lib/debug-pkgs.nix pkgs; }; - - search-page = search.packages.${system}.mkSearch { - modules = [ - ({ config, lib, ... }: { - _module.args = { - libS = self.lib { inherit config lib; }; - inherit pkgs; - }; - imports = [ - (pkgs.path + "/nixos/modules/misc/extra-arguments.nix") - ]; - }) - self.nixosModule - ]; - title = "NixOS Modules Search"; - urlPrefix = "https://github.com/NuschtOS/nixos-modules/tree/main/"; - }; }; }); }