nix-index: init

This commit is contained in:
Charlie Root 2024-09-22 02:02:59 +02:00
commit 43cc623ee3
4 changed files with 2 additions and 15 deletions

View file

@ -1,6 +0,0 @@
_: {
imports = [
./tui/module.nix
./other/module.nix
];
}

View file

@ -1,6 +0,0 @@
{pkgs, ...}: {
programs.command-not-found = {
enable = true;
dbPath = pkgs.sqlite;
};
}

View file

@ -1,3 +1,3 @@
_: {
imports = [./direnv.nix];
imports = [./direnv.nix ./nix-index.nix];
}

View file

@ -1,9 +1,8 @@
{pkgs, ...}: {
programs = {
# We have to disable this and use nix-index instead. (Rust >>> Pearl)
command-not-found = {
# TODO fix this
enable = false;
dbPath = pkgs.sqlite;
};
nix-index = {
enable = true;