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;
|
useGlobalPkgs = true;
|
||||||
users.appdaemon = { pkgs, ... }: {
|
users.appdaemon = { pkgs, ... }: {
|
||||||
home.stateVersion = stateVersion;
|
home.stateVersion = stateVersion;
|
||||||
home.packages = [
|
imports = [ ./git.nix ];
|
||||||
unstable.uv
|
|
||||||
];
|
|
||||||
programs = {
|
programs = {
|
||||||
ssh.enable = true;
|
ssh.enable = true;
|
||||||
git.extraConfig.credential.helper = "store --file ~/.git-credentials";
|
|
||||||
bash = {
|
bash = {
|
||||||
enable = true;
|
enable = true;
|
||||||
profileExtra = "cd ${adPath}";
|
profileExtra = "cd ${adPath}";
|
||||||
|
|||||||
Reference in New Issue
Block a user