Skip to content

Commit

Permalink
Drop search (#148)
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored Oct 26, 2024
1 parent dce2136 commit a1c5ef9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 77 deletions.
53 changes: 1 addition & 52 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 1 addition & 25 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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)) ./.;
Expand Down Expand Up @@ -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/";
};
};
});
}

0 comments on commit a1c5ef9

Please sign in to comment.