This commit is contained in:
John Lancaster
2024-09-16 02:23:39 +00:00
parent 219120983b
commit 8a4620c574
4 changed files with 19 additions and 4 deletions

15
README.md Normal file
View File

@@ -0,0 +1,15 @@
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";
};
}
```