diff --git a/options.xhtml b/options.xhtml index f2cea6a13..b97c20c83 100644 --- a/options.xhtml +++ b/options.xhtml @@ -43811,6 +43811,109 @@ package

+
+ + programs.nix-init.enable + + +
+
+

Whether to enable nix-init.

+ +

Type: +boolean

+ +

Default: +false

+ +

Example: +true

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/nix-init.nix> + +
+
+
+ + programs.nix-init.package + + +
+
+

The nix-init package to use.

+ +

Type: +null or package

+ +

Default: +pkgs.nix-init

+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/nix-init.nix> + +
+
+
+ + programs.nix-init.settings + + +
+
+

Configuration written to +$XDG_CONFIG_HOME/nix-init/config.toml. +See https://github.com/nix-community/nix-init#configuration for the full list +of options.

+ +

Type: +TOML value

+ +

Default: +{ }

+ +

Example:

{
+  maintainers = [
+    "figsoda"
+  ];
+  nixpkgs = "<nixpkgs>";
+  commit = true;
+  access-tokens = {
+    github.com = "ghp_blahblahblah...";
+    gitlab.com = {
+      command = [
+        "secret-tool"
+        "or"
+        "whatever"
+        "you"
+        "use"
+      ];
+    };
+    gitlab.gnome.org = {
+      file = "/path/to/api/token";
+    };
+  };
+}
+
+
+ +

Declared by:

+ + +
+ +<home-manager/modules/programs/nix-init.nix> + +
+
programs.nix-your-shell.enable