Files
ad-nix/README.md
John Lancaster 5cfe401b8c workspace
2024-12-01 23:20:56 -06:00

16 lines
319 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";
};
}
```