updates
This commit is contained in:
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@@ -0,0 +1 @@
|
||||
git.nix
|
||||
15
README.md
Normal file
15
README.md
Normal 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";
|
||||
};
|
||||
}
|
||||
```
|
||||
@@ -65,12 +65,9 @@ in
|
||||
useGlobalPkgs = true;
|
||||
users.appdaemon = { pkgs, ... }: {
|
||||
home.stateVersion = stateVersion;
|
||||
home.packages = [
|
||||
unstable.uv
|
||||
];
|
||||
imports = [ ./git.nix ];
|
||||
programs = {
|
||||
ssh.enable = true;
|
||||
git.extraConfig.credential.helper = "store --file ~/.git-credentials";
|
||||
bash = {
|
||||
enable = true;
|
||||
profileExtra = "cd ${adPath}";
|
||||
|
||||
Reference in New Issue
Block a user