mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-11-05 01:53:15 -06:00
nix fmt
This commit is contained in:
parent
82d563ac61
commit
1fe009085b
2 changed files with 3 additions and 5 deletions
|
@ -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 ./.);
|
||||
|
|
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue