Include nix-search-tv module and add it to home imports Add `nsf` alias for interactive package search with nix-search-tv Enable fish completions generation Comment out the previously allowed insecure packages list
8 lines
140 B
Nix
8 lines
140 B
Nix
{pkgs, ...}: {
|
|
programs.nix-search-tv = {
|
|
enable = true;
|
|
package = pkgs.nix-search-tv;
|
|
settings.indexes = ["nixpkgs"];
|
|
};
|
|
}
|