Files
ad-nix/README.md
John Lancaster 8a4620c574 updates
2024-09-16 02:23:39 +00:00

15 lines
318 B
Markdown

NixOS Configuration for AppDaemon Development
Needs a `git.nix` file. Example below:
```shell
{ ... }:
{
programs.git = {
enable = true;
extraConfig.credential.helper = "store --file ~/.git-credentials";
userName = "John Lancaster";
userEmail = "32917998+jsl12@users.noreply.github.com";
};
}
```