mirror of
https://github.com/daylinmorgan/oizys.git
synced 2024-12-22 14:20:44 -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, ... }:
|
{ lib, ... }:
|
||||||
let
|
let
|
||||||
inherit (builtins)
|
inherit (builtins) filter;
|
||||||
filter;
|
|
||||||
inherit (lib)
|
inherit (lib)
|
||||||
isNixFile
|
isNixFile
|
||||||
mkOption
|
mkOption
|
||||||
|
@ -9,8 +8,7 @@ let
|
||||||
literalExpression
|
literalExpression
|
||||||
mdDoc
|
mdDoc
|
||||||
;
|
;
|
||||||
inherit (lib.filesystem)
|
inherit (lib.filesystem) listFilesRecursive;
|
||||||
listFilesRecursive;
|
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
imports = filter (f: (f != ./default.nix) && (isNixFile f)) (listFilesRecursive ./.);
|
imports = filter (f: (f != ./default.nix) && (isNixFile f)) (listFilesRecursive ./.);
|
||||||
|
|
|
@ -34,7 +34,7 @@
|
||||||
|
|
||||||
# I'm getting errors related to a non-existent nix-index?
|
# I'm getting errors related to a non-existent nix-index?
|
||||||
programs.nix-index.enableZshIntegration = false;
|
programs.nix-index.enableZshIntegration = false;
|
||||||
programs.nix-index.enableBashIntegration =false;
|
programs.nix-index.enableBashIntegration = false;
|
||||||
programs.nix-index.enableFishIntegration = false;
|
programs.nix-index.enableFishIntegration = false;
|
||||||
|
|
||||||
nix.settings = {
|
nix.settings = {
|
||||||
|
|
Loading…
Reference in a new issue