monakhos/docs/directories.md

20 lines
1.2 KiB
Markdown
Raw Normal View History

2024-09-08 22:39:58 +00:00
# MonakhOS directories
Here are the path conventions we use to store files.
- `~/workspace` - Store all code git clone being worked on
2024-12-11 17:44:19 +00:00
- `~/.local/secrets` - Store general long-term clear secrets that are not protected by a password.
- `~/.local/secrets/device` - Long-term secrets that are unique and specific to this device. (Eg. forge client token, LUKS key for external USB thumbdrive, Gotify client token)
- `~/.local/secrets/root_ca` - Long-term local Root Certificate authorities private keys.
2024-09-08 22:39:58 +00:00
- `~/.cache/secrets` - Cookie jar for temporary secrets (less that 1 month), can be regenerated quickly with a command.
2024-12-11 17:44:19 +00:00
- `~/.vaults` - To store [Pass](https://www.passwordstore.org/) directories (a profile per directory). Secrets protected by encryption.
- `~/junk` - Very temp files (experiments)
- `~/triage` - Files to keep but to sort out later to others directories for long-term storage.
2024-09-08 22:39:58 +00:00
- `~/medias` - Store long-term medias (like offline audio and videos)
- `~/notebooks` - Store all monakhos notebooks
- `~/quick` - Store transitive content and medias
- `~/quick/notes`
- `~/quick/screenshots`
2024-12-11 17:44:19 +00:00
- `~/.apps` - Store manually installed linux apps and programs (AppImages or manually built binaries) (like a local /opt)
2024-09-08 22:39:58 +00:00