add home to search

This commit is contained in:
Johannes Jöns 2024-10-29 18:18:44 +01:00
parent 5415215d0a
commit 7b0b04f37d

View file

@ -67,13 +67,13 @@
scopes = [ scopes = [
{ {
modules = [ self.inputs.disko.nixosModules.default ]; modules = [ self.inputs.disko.nixosModules.default ];
name = "disko"; name = "Disko";
specialArgs.modulesPath = pkgs.path + "/nixos/modules"; specialArgs.modulesPath = pkgs.path + "/nixos/modules";
urlPrefix = "https://github.com/nix-community/disko/blob/master/"; urlPrefix = "https://github.com/nix-community/disko/blob/master/";
} }
{ {
modules = lib.attrValues self.inputs.nixos-hardware.nixosModules; modules = lib.attrValues self.inputs.nixos-hardware.nixosModules;
name = "nixos-hardware"; name = "NixOS Hardware";
specialArgs = { specialArgs = {
modulesPath = pkgs.path + "/nixos/modules"; modulesPath = pkgs.path + "/nixos/modules";
inherit pkgs; inherit pkgs;
@ -94,7 +94,7 @@
}; };
} }
]; ];
name = "simple-nixos-mailserver"; name = "Simple NixOS Mailserver";
urlPrefix = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/blob/master/"; urlPrefix = "https://gitlab.com/simple-nixos-mailserver/nixos-mailserver/-/blob/master/";
} }
{ {
@ -102,6 +102,23 @@
name = "NixOS"; name = "NixOS";
urlPrefix = "https://github.com/NixOS/nixpkgs/tree/master/"; urlPrefix = "https://github.com/NixOS/nixpkgs/tree/master/";
} }
{
optionsJSON = self.inputs.home-manager.packages.${system}.docs-html.passthru.home-manager-options.nixos + /share/doc/nixos/options.json;
name = "Home Manager NixOS";
urlPrefix = "https://github.com/nix-community/home-manager/tree/master/";
}
{
optionsJSON = self.inputs.home-manager.packages.${system}.docs-json + /share/doc/home-manager/options.json;
optionsPrefix = "home-manager.users.<name>";
name = "Home Manager";
urlPrefix = "https://github.com/nix-community/home-manager/tree/master/";
}
{
optionsJSON = self.inputs.nixvim.packages.${system}.options-json + /share/doc/nixos/options.json;
optionsPrefix = "programs.nixvim";
name = "NixVim";
urlPrefix = "https://github.com/nix-community/nixvim/tree/main/";
}
]; ];
}; };
}; };