Signed-off-by: Bloxx12 <charlie@charlieroot.dev> Change-Id: I6a6a69641c36f9763e104087a559c148d0449f00
12 lines
214 B
Nix
12 lines
214 B
Nix
{ pkgs, ... }:
|
|
{
|
|
programs = {
|
|
# We have to disable this and use nix-index instead. (Rust >>> Pearl)
|
|
command-not-found = {
|
|
enable = false;
|
|
};
|
|
nix-index = {
|
|
enable = true;
|
|
};
|
|
};
|
|
}
|