Compare commits
15 Commits
feat/herme
...
feat/herme
| Author | SHA1 | Date | |
|---|---|---|---|
| ff129019e0 | |||
| 8025607a53 | |||
| a322ed0884 | |||
| 68b7c40a9e | |||
| 146c164c91 | |||
| 8e896e4c0d | |||
| 1898f39d24 | |||
| c7a0a4dae4 | |||
| b85513ade2 | |||
| d064bfb770 | |||
| 36359de6aa | |||
|
|
10b8565fd6 | ||
|
|
f672696b8e | ||
| 0980dca455 | |||
| 96bc20ab70 |
@@ -25,12 +25,3 @@ This document outlines the development conventions for this NixOS-based infrastr
|
|||||||
- **Secrets:** Secrets are managed with `agenix`. Edit encrypted files with `agenix -e <file>`.
|
- **Secrets:** Secrets are managed with `agenix`. Edit encrypted files with `agenix -e <file>`.
|
||||||
- **Modularity:** Structure configurations into logical, reusable modules under `modules/`. New modules should be registered in `modules/nixos/default.nix` to be available to all hosts.
|
- **Modularity:** Structure configurations into logical, reusable modules under `modules/`. New modules should be registered in `modules/nixos/default.nix` to be available to all hosts.
|
||||||
- **Error Handling:** Ensure Nix expressions are robust and handle potential evaluation errors gracefully.
|
- **Error Handling:** Ensure Nix expressions are robust and handle potential evaluation errors gracefully.
|
||||||
|
|
||||||
## Workflow
|
|
||||||
|
|
||||||
- New feature → clean branch from `origin/master` → push → PR on Gitea
|
|
||||||
- Branch naming: `feat/description` (features), `fix/description` (bugs/docs)
|
|
||||||
- Always branch from `origin/master`, never from another feature branch
|
|
||||||
- Submodule changes: commit submodule update in parent repo (the parent commit pins the submodule commit)
|
|
||||||
- PR title should describe the change; body should explain motivation + summary
|
|
||||||
- After PR merge, delete the feature branch
|
|
||||||
|
|||||||
Submodule assets/compose updated: 1ec22ff3fc...ebad994d60
@@ -207,6 +207,7 @@
|
|||||||
ai = {
|
ai = {
|
||||||
path = self + "/assets/compose/ai";
|
path = self + "/assets/compose/ai";
|
||||||
envFile = config.age.secrets.containers_env.path;
|
envFile = config.age.secrets.containers_env.path;
|
||||||
|
ports = [ 22000 ]; # Syncthing TCP sync
|
||||||
};
|
};
|
||||||
|
|
||||||
cloudstorage = {
|
cloudstorage = {
|
||||||
|
|||||||
@@ -9,6 +9,10 @@
|
|||||||
ai-worker = {
|
ai-worker = {
|
||||||
main = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAXeGtPPcsP2IYRQNvII41NVWhJsarEk8c4qxs/a5sXf";
|
main = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIAXeGtPPcsP2IYRQNvII41NVWhJsarEk8c4qxs/a5sXf";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
hermes_agent = {
|
||||||
|
age = "age178ypgaxn3fldh2aeqz37ncpk7jrplaxacrca8kkcycre3ahjef4s2dp3rp";
|
||||||
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
hosts = {
|
hosts = {
|
||||||
|
|||||||
Binary file not shown.
@@ -4,6 +4,7 @@ let
|
|||||||
keys.users.gortium.main
|
keys.users.gortium.main
|
||||||
keys.hosts.lazyworkhorse.main
|
keys.hosts.lazyworkhorse.main
|
||||||
keys.hosts.lazyworkhorse.bootstrap
|
keys.hosts.lazyworkhorse.bootstrap
|
||||||
|
keys.users.hermes_agent.age
|
||||||
];
|
];
|
||||||
in
|
in
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user