Compare commits
2 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a87d9510bd | |||
| 9acb5c2370 |
@@ -9,6 +9,7 @@
|
||||
./hermes-remote.nix
|
||||
./lf.nix
|
||||
./nitch.nix
|
||||
./nix-index.nix
|
||||
./packages.nix
|
||||
./television.nix
|
||||
./zellij.nix
|
||||
|
||||
@@ -0,0 +1,24 @@
|
||||
# nix-index — Files database for nixpkgs
|
||||
{
|
||||
config,
|
||||
lib,
|
||||
pkgs,
|
||||
...
|
||||
}:
|
||||
with lib; let
|
||||
cfg = config.base.cliTools.lf;
|
||||
in {
|
||||
# Enabled by default — base modules are always-on.
|
||||
options.base.nix-index.lf.enable = (mkEnableOption "enable nix-index files database") // {default = true;};
|
||||
|
||||
config = mkIf cfg.enable {
|
||||
home.packages = [pkgs.comma];
|
||||
|
||||
programs.nix-index = {
|
||||
enable = true;
|
||||
enableBashIntegration = true;
|
||||
enableFishIntegration = true;
|
||||
enableNushellIntegration = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
@@ -24,11 +24,10 @@ in {
|
||||
|
||||
# Nix
|
||||
alejandra
|
||||
comma
|
||||
nixd
|
||||
nix-diff
|
||||
nix-index
|
||||
nix-update
|
||||
nix-tree
|
||||
|
||||
# Dev tools
|
||||
bc
|
||||
|
||||
Reference in New Issue
Block a user