cleanup: remove k8s/sops env vars (muscari-specific), dedupe tree, update AGENTS.md

This commit is contained in:
mikl 2026-07-04 00:47:38 +03:00
parent f4a516aa5c
commit ab376d21aa
3 changed files with 4 additions and 12 deletions

View file

@ -7,7 +7,7 @@
- **declarative nix config** для нескольких хостов через nix-darwin + home-manager - **declarative nix config** для нескольких хостов через nix-darwin + home-manager
- активный: **poppy** (MacBook Air M1) - активный: **poppy** (MacBook Air M1)
- planned: **muscari** (NixOS server), **rosemary** (backup VM) - planned: **muscari** (NixOS server), **rosemary** (backup VM)
- user: `michaotic` (planned: `mikl`) - user: `mikl`
## structure ## structure
@ -28,18 +28,14 @@
├── home/ # home-manager modules ├── home/ # home-manager modules
│ ├── default.nix # imports, sessionVariables │ ├── default.nix # imports, sessionVariables
│ ├── cli.nix # CLI tools (universal) │ ├── cli.nix # CLI tools (universal) + zoxide, bat, eza, fzf
│ ├── git.nix # git config │ ├── git.nix # git config
│ ├── ssh.nix # SSH matchBlocks │ ├── ssh.nix # SSH matchBlocks
│ ├── zsh.nix # shell + aliases │ ├── zsh.nix # shell + aliases
│ ├── kitty.nix # terminal │ ├── kitty.nix # terminal
│ ├── duti.nix # default apps │ ├── duti.nix # default apps (macOS only)
│ ├── pass.nix # pass + gpg-agent (только для GPG) │ ├── pass.nix # pass + gpg-agent (только для GPG)
│ ├── syncthing.nix # p2p sync │ └── syncthing.nix # p2p sync
│ ├── zoxide.nix
│ ├── bat.nix
│ ├── eza.nix
│ └── fzf.nix
└── docs/ # документация └── docs/ # документация
├── structure.md # high-level overview ├── structure.md # high-level overview

View file

@ -15,7 +15,6 @@
htop htop
tldr tldr
fastfetch fastfetch
tree
# Editor # Editor
micro micro

View file

@ -15,10 +15,7 @@
home.sessionVariables = { home.sessionVariables = {
SEARXNG_URL = "https://search.iscg.dev"; SEARXNG_URL = "https://search.iscg.dev";
PATH = "/etc/profiles/per-user/mikl/bin:$HOME/.nix-profile/bin:$HOME/bin:$HOME/.local/bin:$HOME/.npm-global/bin:/Users/mikl/.opencode/bin:/Users/mikl/.local/share/pi-node/node-v22.23.1-darwin-arm64/bin"; PATH = "/etc/profiles/per-user/mikl/bin:$HOME/.nix-profile/bin:$HOME/bin:$HOME/.local/bin:$HOME/.npm-global/bin:/Users/mikl/.opencode/bin:/Users/mikl/.local/share/pi-node/node-v22.23.1-darwin-arm64/bin";
# OPENROUTER_API_KEY = ""; # TODO: move to sops-nix secrets
SOPS_AGE_KEY_FILE = "$HOME/.config/sops/age/keys.txt";
EDITOR = "micro"; EDITOR = "micro";
VISUAL = "micro"; VISUAL = "micro";
KUBECONFIG = "$HOME/.kube/config-jul11";
}; };
} }