This commit is contained in:
Daylin Morgan 2024-06-14 11:52:48 -05:00
parent 82d563ac61
commit 1fe009085b
Signed by: daylin
GPG Key ID: 950D13E9719334AD
2 changed files with 3 additions and 5 deletions

View File

@ -1,7 +1,6 @@
{ lib, ... }:
let
inherit (builtins)
filter;
inherit (builtins) filter;
inherit (lib)
isNixFile
mkOption
@ -9,8 +8,7 @@ let
literalExpression
mdDoc
;
inherit (lib.filesystem)
listFilesRecursive;
inherit (lib.filesystem) listFilesRecursive;
in
{
imports = filter (f: (f != ./default.nix) && (isNixFile f)) (listFilesRecursive ./.);

View File

@ -34,7 +34,7 @@
# I'm getting errors related to a non-existent nix-index?
programs.nix-index.enableZshIntegration = false;
programs.nix-index.enableBashIntegration =false;
programs.nix-index.enableBashIntegration = false;
programs.nix-index.enableFishIntegration = false;
nix.settings = {