add faster nix search
This commit is contained in:
parent
a3e8f36936
commit
f90cb7bac8
2 changed files with 12 additions and 3 deletions
|
@ -24,6 +24,13 @@
|
||||||
kitty.enable = true;
|
kitty.enable = true;
|
||||||
bspwm.enable = true;
|
bspwm.enable = true;
|
||||||
};
|
};
|
||||||
|
shell = {
|
||||||
|
nix = {
|
||||||
|
# makes nix search nixpkgs <example>
|
||||||
|
# ALOT faster
|
||||||
|
search.enable = true;
|
||||||
|
};
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
# Nvidia Drivers
|
# Nvidia Drivers
|
||||||
|
|
|
@ -1,4 +1,7 @@
|
||||||
{ options, config, lib, pkgs, ...}:
|
{ inputs, options, config, lib, pkgs, ...}:
|
||||||
|
# this makes
|
||||||
|
# nix search nixpkgs <package>
|
||||||
|
# ALOT faster
|
||||||
with lib;
|
with lib;
|
||||||
let cfg = config.modules.shell.nix.search;
|
let cfg = config.modules.shell.nix.search;
|
||||||
in
|
in
|
||||||
|
@ -10,8 +13,7 @@ in
|
||||||
config = mkIf cfg.enable {
|
config = mkIf cfg.enable {
|
||||||
nix = {
|
nix = {
|
||||||
registry = {
|
registry = {
|
||||||
nixpkgs.flake = nixpkgs;
|
nixpkgs.flake = inputs.nixpkgs;
|
||||||
nixos-hardware.flake = nixos-hw;
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in a new issue