wrapped fish: init
This commit is contained in:
parent
0fe5d8e650
commit
ea3da7ddc6
4 changed files with 103 additions and 0 deletions
6
modules/programs/module.nix
Normal file
6
modules/programs/module.nix
Normal file
|
@ -0,0 +1,6 @@
|
|||
{pkgs, ...}: {
|
||||
programs.command-not-found = {
|
||||
enable = true;
|
||||
dbPath = pkgs.sqlite;
|
||||
};
|
||||
}
|
16
modules/programs/other/nix-index.nix
Normal file
16
modules/programs/other/nix-index.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{pkgs, ...}: {
|
||||
programs = {
|
||||
command-not-found = {
|
||||
# TODO fix this
|
||||
enable = false;
|
||||
dbPath = pkgs.sqlite;
|
||||
};
|
||||
nix-index = {
|
||||
enable = true;
|
||||
package = pkgs.nix-index;
|
||||
enableBashIntegration = true;
|
||||
enableZshIntegration = true;
|
||||
enableFishIntegration = true;
|
||||
};
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue