files.gitignore.enable

Whether to enable Auto generated .gitignore file.

type

boolean

example

{
  files.gitignore.enable = true;
}

default

{
  files.gitignore.enable = false;
}

files.gitignore.pattern

Gitignore pattern to ignore

type

attribute set of boolean

example

{
  files.gitignore.pattern = {
    "ignore-this-file.txt" = true;
  };
}

default

{
  files.gitignore.pattern = { };
}

files.gitignore.template

Append gitignore template from https://github.com/github/gitignore

type

attribute set of boolean

example

{
  files.gitignore.template = {
    Android = true;
    "community/AWS/SAM" = true;
  };
}

default

{
  files.gitignore.template = { };
}