Skip to content

Commit 62b9961

Browse files
committed
latexindent: enable settings.disableExtraFiles option by default
Enable the hooks.latexindent.settings.disableExtraFiles option by default, aligning with the community consensus that this should be the standard when using version control. Link: cachix#514
1 parent 392184d commit 62b9961

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

modules/hooks.nix

+7-7
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
let
33
inherit (config) hooks tools settings;
44
cfg = config;
5-
inherit (lib) flatten mapAttrs mapAttrsToList mkDefault mkEnableOption mkOption mkRemovedOptionModule mkRenamedOptionModule types;
5+
inherit (lib) flatten mapAttrs mapAttrsToList mkDefault mkOption mkRemovedOptionModule mkRenamedOptionModule types;
66

77
cargoManifestPathArg =
88
lib.optionalString
@@ -631,12 +631,12 @@ in
631631
type = types.submodule {
632632
imports = [ hookModule ];
633633
options.settings = {
634-
disableExtraFiles =
635-
mkEnableOption
636-
(throw "initial description should never be evaluated")
637-
// {
638-
description = "Whether to disable the creation of backup and log files.";
639-
};
634+
disableExtraFiles = mkOption {
635+
default = true;
636+
example = false;
637+
description = "Whether to disable the creation of backup and log files.";
638+
type = types.bool;
639+
};
640640

641641
extraConfig = mkOption {
642642
type = types.attrs;

0 commit comments

Comments
 (0)