add seaches to nix pkgs and options as well as hm options to glance search

This commit is contained in:
2025-10-15 08:34:28 -05:00
parent ce3b8bf27a
commit da7c4fe652
3 changed files with 27 additions and 11 deletions

13
flake.lock generated
View File

@@ -158,20 +158,21 @@
"flake-parts": "flake-parts", "flake-parts": "flake-parts",
"mnw": "mnw", "mnw": "mnw",
"nixpkgs": [ "nixpkgs": [
"nixpkgs-unstable" "nixpkgs"
], ],
"systems": "systems" "systems": "systems"
}, },
"locked": { "locked": {
"lastModified": 1760153667, "lastModified": 1760374571,
"narHash": "sha256-F7KmXT/Izse6Q6CkD5GCImoGPaDJxl03Kd7eD+eY/bU=", "narHash": "sha256-M2lAawtTe+ASWhcHTiTxtI3ROic8bsNLNN3RvJ2ghew=",
"owner": "NotAShelf", "owner": "notashelf",
"repo": "nvf", "repo": "nvf",
"rev": "9df9d51fd9fc8f9a8fc377f984ea3b7ae796172d", "rev": "3e48f13c3ce8372d00be2e27f313f2ed8da5bc82",
"type": "github" "type": "github"
}, },
"original": { "original": {
"owner": "NotAShelf", "owner": "notashelf",
"ref": "v0.8",
"repo": "nvf", "repo": "nvf",
"type": "github" "type": "github"
} }

View File

@@ -18,8 +18,8 @@
url = "github:Maroka-chan/VPN-Confinement"; url = "github:Maroka-chan/VPN-Confinement";
}; };
nvf = { nvf = {
url = "github:NotAShelf/nvf"; url = "github:notashelf/nvf/v0.8";
inputs.nixpkgs.follows = "nixpkgs-unstable"; inputs.nixpkgs.follows = "nixpkgs";
}; };
copyparty.url = "github:9001/copyparty"; copyparty.url = "github:9001/copyparty";
}; };

View File

@@ -186,20 +186,35 @@ in
new-tab = true; new-tab = true;
bangs = [ bangs = [
{ {
title = "YouTube"; title = "youtube";
shortcut = "!y"; shortcut = "!y";
url = "https://www.youtube.com/results?search_query={QUERY}"; url = "https://www.youtube.com/results?search_query={QUERY}";
} }
{ {
title = "Google"; title = "google";
shortcut = "!g"; shortcut = "!g";
url = "https://www.google.com/search?q={QUERY}"; url = "https://www.google.com/search?q={QUERY}";
} }
{ {
title = "Github"; title = "github";
shortcut = "!gh"; shortcut = "!gh";
url = "https://github.com/search?q={QUERY}&type=repositories"; url = "https://github.com/search?q={QUERY}&type=repositories";
} }
{
title = "nixos options";
shortcut = "!no";
url = "https://search.nixos.org/options?channel=25.05&query={QUERY}";
}
{
title = "nixos packages";
shortcut = "!np";
url = "https://search.nixos.org/packages?channel=25.05&query={QUERY}";
}
{
title = "home-manager options";
shortcut = "!hm";
url = "https://home-manager-options.extranix.com/?query={QUERY}&release=release-25.05";
}
]; ];
} }
{ {