Remove comma and the nix-index-database

This commit is contained in:
SebastianStork 2024-09-16 00:52:56 +02:00
parent 4f4e5c93f4
commit 1b06f829c3
5 changed files with 0 additions and 50 deletions

View file

@ -1,22 +0,0 @@
{
config,
inputs,
lib,
...
}:
let
cfg = config.myConfig.comma;
in
{
imports = [ inputs.nix-index-database.nixosModules.nix-index ];
options.myConfig.comma.enable = lib.mkEnableOption "";
config = {
programs = {
command-not-found.enable = !cfg.enable;
nix-index.enable = cfg.enable;
nix-index-database.comma.enable = cfg.enable;
};
};
}