Compare commits
23
Commits
39eb99e021
..
master
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
6519ae6625
|
||
|
|
2229f79617
|
||
|
|
44d832fdda
|
||
|
|
5d1791914e
|
||
|
|
5fe5c81916
|
||
|
|
fbec41ba10
|
||
|
|
ebd306ee98
|
||
|
|
d240aac403
|
||
|
|
258119c5c8
|
||
|
|
1d04dc984f
|
||
|
|
a2b5cfaed3
|
||
|
|
82dfa98c07
|
||
|
|
1dcc27f378
|
||
|
|
e97bfb6262
|
||
|
|
bf5778476e
|
||
|
|
f2b1bedcf0
|
||
|
|
5f6ca72f6c
|
||
|
|
ea39c929ae
|
||
|
|
06e1c4390c
|
||
|
|
01ec6d15db
|
||
|
|
e2267e8978
|
||
|
|
044d2742ed
|
||
|
|
3f92349857
|
@@ -0,0 +1,128 @@
|
|||||||
|
# AGENTS.md
|
||||||
|
|
||||||
|
## Common Commands
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Enter the dev shell (provides helper utilities)
|
||||||
|
nix develop
|
||||||
|
|
||||||
|
# Preferred shorthand (nh must be enabled in config)
|
||||||
|
nh os switch # rebuild and switch
|
||||||
|
nh os boot # new boot entry without switching
|
||||||
|
|
||||||
|
# Direct nixos-rebuild (fallback)
|
||||||
|
sudo nixos-rebuild switch --flake .#nixinator
|
||||||
|
sudo nixos-rebuild switch --flake .#nixtop
|
||||||
|
sudo nixos-rebuild switch --flake .#servenix
|
||||||
|
sudo nixos-rebuild switch --flake .#thinknix
|
||||||
|
sudo darwin-rebuild switch --flake .#darwinix
|
||||||
|
|
||||||
|
# Validate flake without building
|
||||||
|
nix flake check
|
||||||
|
|
||||||
|
# Dev shell helpers (run inside `nix develop`)
|
||||||
|
list-system-packages # show installed system packages
|
||||||
|
list-user-packages # show installed user packages
|
||||||
|
store-optimise # nix store --optimise
|
||||||
|
store-verify # nix store --verify --repair
|
||||||
|
```
|
||||||
|
|
||||||
|
## MCP Tools
|
||||||
|
|
||||||
|
The **nixos** MCP server is available and should be used for any Nix-related lookups instead of `nix search` or manual web searches. It queries live APIs (search.nixos.org, NixHub, FlakeHub) and is more current than training data.
|
||||||
|
|
||||||
|
```
|
||||||
|
# Common intents
|
||||||
|
nix {"action":"info","query":"<pkg>","channel":"unstable"} # package info
|
||||||
|
nix {"action":"search","query":"<term>","type":"options"} # NixOS options
|
||||||
|
nix {"action":"search","source":"home-manager","query":"<term>"} # HM options
|
||||||
|
nix {"action":"cache","query":"<pkg>"} # binary cache status
|
||||||
|
nix_versions {"package":"<attr>","version":"<ver>"} # commit that shipped a version
|
||||||
|
```
|
||||||
|
|
||||||
|
## Architecture
|
||||||
|
|
||||||
|
This is a multi-host NixOS/nix-darwin flake. Home-manager runs **as a NixOS module** — not standalone. A single `nixos-rebuild switch` rebuilds system and user config together. The HM config can access the system config via the `nixosConfig` special arg.
|
||||||
|
|
||||||
|
### Hosts
|
||||||
|
|
||||||
|
| Host | Type | Notes |
|
||||||
|
|------|------|-------|
|
||||||
|
| `nixinator` | Desktop (x86_64) | Primary machine; disko, lanzaboote, impermanence |
|
||||||
|
| `nixtop` | Laptop (x86_64) | Intel GPU, NetworkManager |
|
||||||
|
| `servenix` | Server (x86_64) | Headless; runs OCI container services |
|
||||||
|
| `thinknix` | Headless (x86_64) | Generic headless config |
|
||||||
|
| `darwinix` | macOS (aarch64) | Darwin-specific configuration |
|
||||||
|
|
||||||
|
### Config Layering (resolved in this order)
|
||||||
|
|
||||||
|
1. **Global defaults** — `system/default.nix` / `home/christoph/default.nix`
|
||||||
|
2. **Host overrides** — `system/<hostname>/default.nix` / `home/christoph/<hostname>/default.nix`
|
||||||
|
3. **Hardware** — `system/<hostname>/hardware-configuration.nix` (auto-generated, **do not hand-edit**)
|
||||||
|
|
||||||
|
The builder (`lib/nixos.nix`: `mkNixosConfigWithHomeManagerModule`) wires these together.
|
||||||
|
|
||||||
|
### Special Args
|
||||||
|
|
||||||
|
Injected into **all system and HM modules**:
|
||||||
|
`inputs` `system` `hostname` `mylib` `username` `publicKeys` `headless`
|
||||||
|
|
||||||
|
Use `headless` (boolean) to gate anything graphical. Use `mylib.<fn>` instead of reimplementing helpers.
|
||||||
|
|
||||||
|
### Module System
|
||||||
|
|
||||||
|
Two parallel hierarchies, identical pattern:
|
||||||
|
|
||||||
|
| Scope | Path | Option prefix |
|
||||||
|
|-------|------|---------------|
|
||||||
|
| System | `system/systemmodules/<name>/` | `systemmodules.<name>.*` |
|
||||||
|
| Home-manager | `home/homemodules/<name>/` | `homemodules.<name>.*` |
|
||||||
|
|
||||||
|
**System modules** — `system/systemmodules/<name>/`
|
||||||
|
- `options.nix` — declares `systemmodules.<name>.*` options
|
||||||
|
- `default.nix` — imports `./options.nix`, implements `lib.mkIf <name>.enable { ... }`
|
||||||
|
|
||||||
|
**Home-manager modules** — `home/homemodules/<name>/`
|
||||||
|
- `options.nix` — declares `homemodules.<name>.*` options
|
||||||
|
- `default.nix` — same pattern under `homemodules.*`
|
||||||
|
|
||||||
|
When adding a new module, copy from `0_template/` in either hierarchy. Modules under `1_deprecated/` are kept for reference only — not imported anywhere.
|
||||||
|
|
||||||
|
HM modules are placed in `home-manager.sharedModules` (not `users.<user>.imports`) — this enables proper nixd completions.
|
||||||
|
|
||||||
|
### Custom Library (`lib/`)
|
||||||
|
|
||||||
|
Always available as `mylib`. Key files:
|
||||||
|
- `nixos.nix` — host config builders, `mkNixosConfigWithHomeManagerModule`, `mkDarwinConfigWithHomeManagerModule`
|
||||||
|
- `modules.nix` — `mkBoolOption`, `mkElse`, `attrName`, `attrValue`, `contains`
|
||||||
|
- `networking.nix` — `mkSystemdNetwork`, `mkStaticSystemdNetwork`
|
||||||
|
- `generators.nix` — `toLuaObject`, `toLuaKeymap` (used by Neovim module)
|
||||||
|
- `containers.nix` — OCI container helpers for services
|
||||||
|
- `color.nix` — theming
|
||||||
|
|
||||||
|
Always use `mylib.<fn>` (available as a special arg) rather than reimplementing these utilities.
|
||||||
|
|
||||||
|
### Services
|
||||||
|
|
||||||
|
Server services are OCI containers (podman/docker) defined in `system/services/`. Each file defines one or more containers. These are only enabled on `servenix`. Use the template at `system/services/0_TEMPLATE.nix`.
|
||||||
|
|
||||||
|
### Secrets
|
||||||
|
|
||||||
|
Managed via **sops-nix**. Age keys stored in `flake.nix` under `publicKeys.christoph`. Encrypted `.yaml`/`.json` files live alongside the module that uses them, referenced as `sops.secrets.<name>`.
|
||||||
|
|
||||||
|
### Overlays and Custom Derivations
|
||||||
|
|
||||||
|
- `overlays/default.nix` — package overrides (e.g., patched JetBrains CLion version)
|
||||||
|
- `derivations/default.nix` — custom packages: `monolisa`, `msty`, `unityhub`, `tidal-dl-ng`, `tiddl`
|
||||||
|
- `derivations/1_deprecated/` — kept for reference, not imported
|
||||||
|
|
||||||
|
### Sub-projects
|
||||||
|
|
||||||
|
`config/flake.nix` is a separate, reusable development-project template — **not part of the main NixOS flake**. It uses `flake-utils` for multi-system shells.
|
||||||
|
|
||||||
|
## Constraints
|
||||||
|
|
||||||
|
- No CI, no tests, no linting — this is a configuration repo
|
||||||
|
- `nix flake check` is the only validation available
|
||||||
|
- `documentation.enable = false` by default (slow); toggle it if you need man pages
|
||||||
|
- Hardware config files are auto-generated — never edit them by hand
|
||||||
Generated
+90
-90
@@ -20,11 +20,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1788016784,
|
"lastModified": 1788444081,
|
||||||
"narHash": "sha256-RO90Fk+Rn2Yy+I8oL4ePTLLKLgOAr8hrTx7tlpwdLaA=",
|
"narHash": "sha256-I8i97p9WBQaZQyyBaHFMt8e01VfgfFZSaO+vAUd0u0A=",
|
||||||
"owner": "hyprwm",
|
"owner": "hyprwm",
|
||||||
"repo": "aquamarine",
|
"repo": "aquamarine",
|
||||||
"rev": "783bfd9ae441d1d0519b979ac68b73ddd6e81df0",
|
"rev": "36b66db4ddd708ad19f5db850af6a478d8a19b2a",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -109,11 +109,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1788165233,
|
"lastModified": 1789175900,
|
||||||
"narHash": "sha256-iABT8jOczQ8gvSo2TgyCQNDtXjh7MSx3myiAAzaYTa8=",
|
"narHash": "sha256-kvERUjjzkawZwg27P8+DVNULBUl6tb/RaXrFpSJnHX4=",
|
||||||
"owner": "aaddrick",
|
"owner": "aaddrick",
|
||||||
"repo": "claude-desktop-debian",
|
"repo": "claude-desktop-debian",
|
||||||
"rev": "249a33390a58278a7ace07145d50aa3336bdab99",
|
"rev": "4c2bfbf9577f873df99757bed171c76633ab22a6",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -130,11 +130,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1788777912,
|
"lastModified": 1789285506,
|
||||||
"narHash": "sha256-lgCRzVW8Uz9zUsWi1NjuXYOyhuXZ/1x/hDV69Sb3QFI=",
|
"narHash": "sha256-f7R2NvLwKBAzhwg5hxu+NJhTAn4+i4VuZxe3VIa+aCA=",
|
||||||
"owner": "ilysenko",
|
"owner": "ilysenko",
|
||||||
"repo": "codex-desktop-linux",
|
"repo": "codex-desktop-linux",
|
||||||
"rev": "758b4ce74301c387c6006698921384d4ca1dc47d",
|
"rev": "f445a448d2f95766e5e0b9563618964a5250704f",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -163,11 +163,11 @@
|
|||||||
"nixpkgs": "nixpkgs"
|
"nixpkgs": "nixpkgs"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1768818222,
|
"lastModified": 1788342953,
|
||||||
"narHash": "sha256-460jc0+CZfyaO8+w8JNtlClB2n4ui1RbHfPTLkpwhU8=",
|
"narHash": "sha256-EWkNM4JzBhZ/Yn1PG6lP4/QJuFAFeHYlY5gVxXu940Y=",
|
||||||
"owner": "numtide",
|
"owner": "numtide",
|
||||||
"repo": "devshell",
|
"repo": "devshell",
|
||||||
"rev": "255a2b1725a20d060f566e4755dbf571bbbb5f76",
|
"rev": "a67c0f87b63bcbdbdcb56785bec0205a2e3d6026",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -337,11 +337,11 @@
|
|||||||
"nixpkgs-lib": "nixpkgs-lib"
|
"nixpkgs-lib": "nixpkgs-lib"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1787559586,
|
"lastModified": 1788450739,
|
||||||
"narHash": "sha256-onL0VLf9vPllmT0H/OlURIU5r5t5WIEl7t4tVNKT0Nw=",
|
"narHash": "sha256-glZLQlzIn1fXH6PazR2iUmTo7kzzyYSshrWhLS9TqCU=",
|
||||||
"owner": "hercules-ci",
|
"owner": "hercules-ci",
|
||||||
"repo": "flake-parts",
|
"repo": "flake-parts",
|
||||||
"rev": "9d0d87172c374f89da73c1cfe6d81ae62feac1f1",
|
"rev": "31729ca8cbdb4fa927b34e5f4353e6a83f39e993",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -355,11 +355,11 @@
|
|||||||
"nixpkgs-lib": "nixpkgs-lib_2"
|
"nixpkgs-lib": "nixpkgs-lib_2"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1787559586,
|
"lastModified": 1788450739,
|
||||||
"narHash": "sha256-onL0VLf9vPllmT0H/OlURIU5r5t5WIEl7t4tVNKT0Nw=",
|
"narHash": "sha256-glZLQlzIn1fXH6PazR2iUmTo7kzzyYSshrWhLS9TqCU=",
|
||||||
"owner": "hercules-ci",
|
"owner": "hercules-ci",
|
||||||
"repo": "flake-parts",
|
"repo": "flake-parts",
|
||||||
"rev": "9d0d87172c374f89da73c1cfe6d81ae62feac1f1",
|
"rev": "31729ca8cbdb4fa927b34e5f4353e6a83f39e993",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -376,11 +376,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1787559586,
|
"lastModified": 1788450739,
|
||||||
"narHash": "sha256-onL0VLf9vPllmT0H/OlURIU5r5t5WIEl7t4tVNKT0Nw=",
|
"narHash": "sha256-glZLQlzIn1fXH6PazR2iUmTo7kzzyYSshrWhLS9TqCU=",
|
||||||
"owner": "hercules-ci",
|
"owner": "hercules-ci",
|
||||||
"repo": "flake-parts",
|
"repo": "flake-parts",
|
||||||
"rev": "9d0d87172c374f89da73c1cfe6d81ae62feac1f1",
|
"rev": "31729ca8cbdb4fa927b34e5f4353e6a83f39e993",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -513,11 +513,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1787424939,
|
"lastModified": 1788267358,
|
||||||
"narHash": "sha256-O2tBn84NNuHrnqNVxx/XqsXwfYvS1YwBh+7CBnbCYsk=",
|
"narHash": "sha256-nt+lUqYVpc9Y6JeMd2WmXzCDojasdadKo0mWcluvY2Y=",
|
||||||
"owner": "cachix",
|
"owner": "cachix",
|
||||||
"repo": "git-hooks.nix",
|
"repo": "git-hooks.nix",
|
||||||
"rev": "809414f0cdadf82cf11b06c2b29ba9b3168b3297",
|
"rev": "27555e2624241fb116b49095df4caaee85a25691",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -572,11 +572,11 @@
|
|||||||
"nixpkgs": "nixpkgs_3"
|
"nixpkgs": "nixpkgs_3"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1788044418,
|
"lastModified": 1789127271,
|
||||||
"narHash": "sha256-cmOd3iGoE140M2GidgQMQbyxHZ4dT7C0QZq2+CrXQyA=",
|
"narHash": "sha256-vL/Fpo7Zxa7wvO8V5FAToUBvP+K3XsMB1wUglTtd/J0=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixos-hardware",
|
"repo": "nixos-hardware",
|
||||||
"rev": "dc3f0cfde2050172abf6c3cdb684f735c15a57c5",
|
"rev": "24cfdc1f9344b90a1eee329a3906e2f39f4d0f1e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -592,11 +592,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1788146656,
|
"lastModified": 1789320570,
|
||||||
"narHash": "sha256-XmJmvk9rytTb7dCotO/aqR+YysB8HOqnprlOdv+LAF4=",
|
"narHash": "sha256-1Js4AJiWLV7U1SF3ok0J2tKbBEJYE5YpElGU+7fMbfo=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "home-manager",
|
"repo": "home-manager",
|
||||||
"rev": "82c265faf4e3161d6015db07c9b0f1ee36a9029b",
|
"rev": "87b3c74df02a2b2e691a24f3c82774f48a70c1bd",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -701,11 +701,11 @@
|
|||||||
"xdph": "xdph"
|
"xdph": "xdph"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1788187241,
|
"lastModified": 1789313241,
|
||||||
"narHash": "sha256-LtXqt/xbyR/FyKtuLTXJN5pxJoMAHzI/uWTw/ZxUxwA=",
|
"narHash": "sha256-b59oP/YeH0kug0tBpPThWjOzIvcMB646rE9HySEyz24=",
|
||||||
"owner": "hyprwm",
|
"owner": "hyprwm",
|
||||||
"repo": "Hyprland",
|
"repo": "Hyprland",
|
||||||
"rev": "3b2dadd987fd9da19006a4969036777f44c98f61",
|
"rev": "1b85c7aa1b5c41d906880f0f495bcd0749a23175",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -777,11 +777,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1788037253,
|
"lastModified": 1788563182,
|
||||||
"narHash": "sha256-QSGOM0IFpp45DwmtIwcih8+kKuSgAoQal9QkVVSRNew=",
|
"narHash": "sha256-e2Q7i5T+iQY0o/uxFNnXxWpXZ1e5f6VV4eHdKk7l6kc=",
|
||||||
"owner": "hyprwm",
|
"owner": "hyprwm",
|
||||||
"repo": "hyprland-plugins",
|
"repo": "hyprland-plugins",
|
||||||
"rev": "67c3a4c019f223c27b5bdc6bb656ce891a60861a",
|
"rev": "722f15a77768eab13f01f5e5dce024bd2f61f270",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -980,11 +980,11 @@
|
|||||||
"nixpkgs": "nixpkgs_5"
|
"nixpkgs": "nixpkgs_5"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1787965620,
|
"lastModified": 1789070605,
|
||||||
"narHash": "sha256-CIDEB9jOZwDB6AM0bsKeTe0AEm12XJqDVLHOIg86be0=",
|
"narHash": "sha256-QIo1r169N/jP71+YUXci6+fdD1WqKLE/FfWE8SLAqRI=",
|
||||||
"owner": "JPyke3",
|
"owner": "JPyke3",
|
||||||
"repo": "hytale-launcher-nix",
|
"repo": "hytale-launcher-nix",
|
||||||
"rev": "606cb7cdc218b8ddab2c478aca3e12fd0555375c",
|
"rev": "9c26eaaef7e7b362dafa106e0de9567618e1698e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1088,11 +1088,11 @@
|
|||||||
"xwayland-satellite-unstable": "xwayland-satellite-unstable"
|
"xwayland-satellite-unstable": "xwayland-satellite-unstable"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1788119116,
|
"lastModified": 1789315465,
|
||||||
"narHash": "sha256-LvuLRFljwbOpaQ+X6sWAD/penYTCqHEVf6AxQcBHDlo=",
|
"narHash": "sha256-tCEkCbcSkAIreekMHErF3SnnawmRq8Qjnl18RKq5eVQ=",
|
||||||
"owner": "epireyn",
|
"owner": "epireyn",
|
||||||
"repo": "niri-flake",
|
"repo": "niri-flake",
|
||||||
"rev": "8c4cf2a8d3e42ca2db41b884eef333e674ecc09f",
|
"rev": "cacbfbfbcf11df02583aa5d60a8e004d3e5b9fd7",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1121,11 +1121,11 @@
|
|||||||
"niri-unstable": {
|
"niri-unstable": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1787337984,
|
"lastModified": 1789308908,
|
||||||
"narHash": "sha256-BNZUEVR2H96hCKENNKoLSSTFT8W4smp7v94hJc4Ehfc=",
|
"narHash": "sha256-rKf+kiqygvn1DjpNRlHVkbXnABLGpd/N6Gg+t2POEQM=",
|
||||||
"owner": "niri-wm",
|
"owner": "niri-wm",
|
||||||
"repo": "niri",
|
"repo": "niri",
|
||||||
"rev": "dd75865f547f0eac0e9b6c4d86d2cd00c0744252",
|
"rev": "66d04a7d72e25a6c74307bab33a91924d124755d",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1201,11 +1201,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1788064340,
|
"lastModified": 1789271913,
|
||||||
"narHash": "sha256-QehJP4PYmGoibbmFKYUA19wvdESywXNC+9DHxcuos48=",
|
"narHash": "sha256-9cNioGJJ/2wH/153TefIRv33H98+Y5q2sGOdMWBtdN4=",
|
||||||
"owner": "fufexan",
|
"owner": "fufexan",
|
||||||
"repo": "nix-gaming",
|
"repo": "nix-gaming",
|
||||||
"rev": "51de0cca39be715df8e02218421cc7f91388228e",
|
"rev": "04d8ba4c959ed2e1735ed1a2bc2bea8184065d1e",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1253,11 +1253,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs-lib": {
|
"nixpkgs-lib": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1785031560,
|
"lastModified": 1788057806,
|
||||||
"narHash": "sha256-OmshNvn2vupOFpYinLUu+1Dnpu4n7Q5N3ggGVNHpkUI=",
|
"narHash": "sha256-DTQSMxzDWmT0zhguthvegnVkn7CFqGCv4IHCzk5ZUpM=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "nixpkgs.lib",
|
"repo": "nixpkgs.lib",
|
||||||
"rev": "0e79af5e3d4dcfcd676ab5ba3f95d2e3352e078c",
|
"rev": "596e2e3940e09b2abbeb03f75fa1828c57fcd72c",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1268,11 +1268,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs-lib_2": {
|
"nixpkgs-lib_2": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1785031560,
|
"lastModified": 1788057806,
|
||||||
"narHash": "sha256-OmshNvn2vupOFpYinLUu+1Dnpu4n7Q5N3ggGVNHpkUI=",
|
"narHash": "sha256-DTQSMxzDWmT0zhguthvegnVkn7CFqGCv4IHCzk5ZUpM=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "nixpkgs.lib",
|
"repo": "nixpkgs.lib",
|
||||||
"rev": "0e79af5e3d4dcfcd676ab5ba3f95d2e3352e078c",
|
"rev": "596e2e3940e09b2abbeb03f75fa1828c57fcd72c",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1283,11 +1283,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs-stable": {
|
"nixpkgs-stable": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1787962033,
|
"lastModified": 1789114715,
|
||||||
"narHash": "sha256-u6z9VTZA4Kf3RkHQo9sQI7NI4Ei/uiU9vrMqOiwWP1Y=",
|
"narHash": "sha256-ugpsyk3NM2s87vXfUiIIiibbJ4Pp0JPS5p/3mfs+q+c=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "c5c4a43b0e8056328ec4529f735cabdb8f1942bb",
|
"rev": "21a67dc470149f337cecafbe965d8d252a390518",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1376,11 +1376,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs_4": {
|
"nixpkgs_4": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1787736819,
|
"lastModified": 1788404924,
|
||||||
"narHash": "sha256-cV5xEJJK3BvhU8rEd4mC9UsmDi5qscv/kzGPhBRC5WA=",
|
"narHash": "sha256-lhEhY8X5EgkQ/eg6IFz4cc8jRuSYSvnxx1al7d1dvZ0=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "9fbb54b33e91ee4ca368e35a78e0613c720600b3",
|
"rev": "0968519e14f7aa7d3e9b389682bd74d2b51c8ce8",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1392,11 +1392,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs_5": {
|
"nixpkgs_5": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1787736819,
|
"lastModified": 1789006805,
|
||||||
"narHash": "sha256-cV5xEJJK3BvhU8rEd4mC9UsmDi5qscv/kzGPhBRC5WA=",
|
"narHash": "sha256-xB8mKMOx1IA9vTDNLmJZ6n4wCMq/cuWBBOzGCRnqxrU=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "9fbb54b33e91ee4ca368e35a78e0613c720600b3",
|
"rev": "8ce4ef6cb6f871616146b9fe26d2a5ae594e94fe",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1440,11 +1440,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs_8": {
|
"nixpkgs_8": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1788039129,
|
"lastModified": 1789149629,
|
||||||
"narHash": "sha256-pa4Q0qErvCvzCaaUph7Sm37RhR4xvPrYI8Lgz6k85+A=",
|
"narHash": "sha256-H6GwaZzZf+4npqv0tph94w9tZddSjFjmQrVsW0z78uk=",
|
||||||
"owner": "nixos",
|
"owner": "nixos",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "d2f67949798825fe853f7c5d0492b8bf016d3f88",
|
"rev": "eaad089433ca2bb662274377d33df3d0e51ef28b",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1456,11 +1456,11 @@
|
|||||||
},
|
},
|
||||||
"nixpkgs_9": {
|
"nixpkgs_9": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1787631388,
|
"lastModified": 1789073787,
|
||||||
"narHash": "sha256-vMiXptXarfSdJb1Gkc+FYVOAibuBRj7qxGa8z68q1Uw=",
|
"narHash": "sha256-xfX/toC2QV707s06GbP4II/TxYF0fNQj7s5/LClNDKc=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "ac6b2166e7a9375683b8e98f860f273222337b16",
|
"rev": "aff8a0b28396750446e5537a96461bc4facdb287",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1477,11 +1477,11 @@
|
|||||||
"systems": "systems_5"
|
"systems": "systems_5"
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1788190018,
|
"lastModified": 1789311313,
|
||||||
"narHash": "sha256-59BAfH0txPAZrPBF4QJqwvUWppD+ICrcjA1LZAmPnrQ=",
|
"narHash": "sha256-79l448oCbWZAuqewBd7hWby4+PLjI1Bnyrb/py8C2HA=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "nixvim",
|
"repo": "nixvim",
|
||||||
"rev": "41844750e55f17b1385d5b09ca7ade5f11f49506",
|
"rev": "31e5c6a0937e2554aa5279719ff794655bfb0365",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1521,11 +1521,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1788194662,
|
"lastModified": 1789323837,
|
||||||
"narHash": "sha256-sKyIwEuzXbGDIxS/ZNBwIqLKDaPMHWD7p82kl19Xf3Q=",
|
"narHash": "sha256-FCXzuwbIN6qyEGPn/Be+FkCPE683SHOCJ3mRlKipqvE=",
|
||||||
"owner": "nix-community",
|
"owner": "nix-community",
|
||||||
"repo": "NUR",
|
"repo": "NUR",
|
||||||
"rev": "b532e223e8c3372fbd2a5c4df1cffc3fb7cdf1d4",
|
"rev": "02e124fc8de26c30e3116c67792ed309ad68c83f",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1591,11 +1591,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1787424939,
|
"lastModified": 1788267358,
|
||||||
"narHash": "sha256-O2tBn84NNuHrnqNVxx/XqsXwfYvS1YwBh+7CBnbCYsk=",
|
"narHash": "sha256-nt+lUqYVpc9Y6JeMd2WmXzCDojasdadKo0mWcluvY2Y=",
|
||||||
"owner": "cachix",
|
"owner": "cachix",
|
||||||
"repo": "git-hooks.nix",
|
"repo": "git-hooks.nix",
|
||||||
"rev": "809414f0cdadf82cf11b06c2b29ba9b3168b3297",
|
"rev": "27555e2624241fb116b49095df4caaee85a25691",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1680,11 +1680,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1786629091,
|
"lastModified": 1788914643,
|
||||||
"narHash": "sha256-gkig4nPi1CWc4Z50GBsjE4ygSE7hMpl/TwID2an2Cck=",
|
"narHash": "sha256-4GuMPW90JSxXWDPUB9M+1m7fYbe3H0apOd86/zBQ2Kw=",
|
||||||
"owner": "Mic92",
|
"owner": "Mic92",
|
||||||
"repo": "sops-nix",
|
"repo": "sops-nix",
|
||||||
"rev": "a8627b21b9107c5711c96b84f32a9a4b3d45295f",
|
"rev": "13616fff713a9f94055c66f15687ebdc17a335df",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1856,11 +1856,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1780405768,
|
"lastModified": 1789070158,
|
||||||
"narHash": "sha256-WhPHaupeq5yWP53anFH6vr/ZMQQtAYGtpgUhzqWx9Ws=",
|
"narHash": "sha256-JN2RfhhOnitwWCKWfcpDq+elOpAA9PBX4AhxQsNU+UA=",
|
||||||
"owner": "adriankarlen",
|
"owner": "adriankarlen",
|
||||||
"repo": "textfox",
|
"repo": "textfox",
|
||||||
"rev": "d6895da75f10fa17f1b637759aec3d84818b20e2",
|
"rev": "60a2700bc884f1c6de1d9100def058f2650acbd9",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -1983,11 +1983,11 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1786988229,
|
"lastModified": 1788025068,
|
||||||
"narHash": "sha256-frEFLVRj8xXvBBDs44IRiqHo6R2PxsRpluygL7abjjI=",
|
"narHash": "sha256-TBqronrrc/F2Ry/E37d/1TLldDLJDFNSwvJjgk+cXzU=",
|
||||||
"owner": "hyprwm",
|
"owner": "hyprwm",
|
||||||
"repo": "xdg-desktop-portal-hyprland",
|
"repo": "xdg-desktop-portal-hyprland",
|
||||||
"rev": "59d429bf45aed4e2209043c0c36565ad8e2859a5",
|
"rev": "ba31964ee42b56bcb0d3b78a64ead5d8a1c3c6f6",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
@@ -2016,11 +2016,11 @@
|
|||||||
"xwayland-satellite-unstable": {
|
"xwayland-satellite-unstable": {
|
||||||
"flake": false,
|
"flake": false,
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1788035239,
|
"lastModified": 1788991189,
|
||||||
"narHash": "sha256-ML+LVzuzFZPlCPzM/YEfDA2P9bEJJB8XlVKKYJbUPeU=",
|
"narHash": "sha256-0TxfMgqW0/BLD4M942c5DCKYrtPvzsPJwvdcco4LQUM=",
|
||||||
"owner": "Supreeeme",
|
"owner": "Supreeeme",
|
||||||
"repo": "xwayland-satellite",
|
"repo": "xwayland-satellite",
|
||||||
"rev": "6d0de1cedde9dc02abb8877d1b04b90a8c22c3d0",
|
"rev": "add2795134593faafce60e404a0a75df68e9ee0c",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
|
|||||||
@@ -142,10 +142,37 @@
|
|||||||
mcp = {
|
mcp = {
|
||||||
enable = true;
|
enable = true;
|
||||||
servers = {
|
servers = {
|
||||||
|
context7 = {
|
||||||
|
command = "npx";
|
||||||
|
args = ["-y" "@upstash/context7-mcp"];
|
||||||
|
env = {
|
||||||
|
CONTEXT7_API_KEY.file = nixosConfig.sops.secrets.context7-api-key.path;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
# deepwiki = {
|
||||||
|
# # https://mcpservers.org/servers/devin/deepwiki
|
||||||
|
# url = "https://mcp.deepwiki.com/mcp";
|
||||||
|
# };
|
||||||
|
# github = {
|
||||||
|
# # https://mcpservers.org/servers/github-mcp-server
|
||||||
|
# url = "https://api.githubcopilot.com/mcp/";
|
||||||
|
# headers = {
|
||||||
|
# Authorization = "Bearer ${input:github_mcp_pat}";
|
||||||
|
# };
|
||||||
|
# };
|
||||||
nixos = {
|
nixos = {
|
||||||
command = "uvx";
|
command = "uvx";
|
||||||
args = ["mcp-nixos"];
|
args = ["mcp-nixos"];
|
||||||
};
|
};
|
||||||
|
obsidian = {
|
||||||
|
command = "uvx";
|
||||||
|
args = ["mcp-obsidian"];
|
||||||
|
env = {
|
||||||
|
OBSIDIAN_API_KEY.file = nixosConfig.sops.secrets.obsidian-rest-api-key.path;
|
||||||
|
OBSIDIAN_HOST = "127.0.0.1";
|
||||||
|
OBSIDIAN_PORT = "27124";
|
||||||
|
};
|
||||||
|
};
|
||||||
svelte = {
|
svelte = {
|
||||||
# claude mcp add -t stdio -s [scope] svelte -- npx -y @sveltejs/mcp
|
# claude mcp add -t stdio -s [scope] svelte -- npx -y @sveltejs/mcp
|
||||||
command = "npx";
|
command = "npx";
|
||||||
@@ -157,6 +184,10 @@
|
|||||||
command = "npx";
|
command = "npx";
|
||||||
args = ["-y" "shadcn@latest" "mcp"];
|
args = ["-y" "shadcn@latest" "mcp"];
|
||||||
};
|
};
|
||||||
|
zotero = {
|
||||||
|
command = "uvx";
|
||||||
|
args = ["zotero-mcp-server"];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
@@ -250,19 +281,37 @@
|
|||||||
"*" = "ask";
|
"*" = "ask";
|
||||||
"bash" = {
|
"bash" = {
|
||||||
"*" = "ask";
|
"*" = "ask";
|
||||||
"ls *" = "allow";
|
"awk *" = "ask"; # Can modify files
|
||||||
"find *" = "ask"; # Don't want find -exec
|
|
||||||
"file *" = "allow";
|
|
||||||
"wc *" = "allow";
|
|
||||||
"grep *" = "allow";
|
|
||||||
"rg *" = "allow";
|
|
||||||
"test *" = "allow";
|
|
||||||
"echo *" = "allow";
|
|
||||||
"which *" = "allow";
|
|
||||||
"pwd *" = "allow";
|
|
||||||
"dirname *" = "allow";
|
|
||||||
"basename *" = "allow";
|
"basename *" = "allow";
|
||||||
|
"cmp *" = "allow";
|
||||||
|
"cut *" = "allow";
|
||||||
|
"df *" = "allow";
|
||||||
|
"dirname *" = "allow";
|
||||||
|
"du *" = "allow";
|
||||||
|
"echo *" = "allow";
|
||||||
|
"fd *" = "ask"; # Can execute commands
|
||||||
|
"file *" = "allow";
|
||||||
|
"find *" = "ask"; # Can execute commands
|
||||||
|
"grep *" = "allow";
|
||||||
|
"head *" = "allow";
|
||||||
|
"ls *" = "allow";
|
||||||
|
"nl *" = "allow";
|
||||||
|
"od *" = "allow";
|
||||||
|
"pwd *" = "allow";
|
||||||
"readlink *" = "allow";
|
"readlink *" = "allow";
|
||||||
|
"rg *" = "ask"; # Can execute commands
|
||||||
|
"sed *" = "ask"; # Can modify files
|
||||||
|
"sha256sum *" = "allow";
|
||||||
|
"sha512sum *" = "allow";
|
||||||
|
"sort *" = "ask"; # Can modify files
|
||||||
|
"stat *" = "allow";
|
||||||
|
"tail *" = "allow";
|
||||||
|
"test *" = "allow";
|
||||||
|
"tr *" = "allow";
|
||||||
|
"uniq *" = "ask"; # Can modify files
|
||||||
|
"wc *" = "allow";
|
||||||
|
"which *" = "allow";
|
||||||
|
"xargs *" = "ask"; # Can modify files
|
||||||
|
|
||||||
"cat *.env" = "deny";
|
"cat *.env" = "deny";
|
||||||
"cat *.env.*" = "deny";
|
"cat *.env.*" = "deny";
|
||||||
@@ -277,11 +326,19 @@
|
|||||||
"nix why-depends *" = "allow";
|
"nix why-depends *" = "allow";
|
||||||
"nix derivation show *" = "allow";
|
"nix derivation show *" = "allow";
|
||||||
"nix store ping *" = "allow";
|
"nix store ping *" = "allow";
|
||||||
"nix stire diff-closures *" = "allow";
|
"nix store diff-closures *" = "allow";
|
||||||
|
|
||||||
"git status *" = "allow";
|
"git branch *" = "ask";
|
||||||
"git log *" = "allow";
|
"git check-ignore *" = "allow";
|
||||||
"git diff *" = "allow";
|
"git diff *" = "allow";
|
||||||
|
"git log *" = "allow";
|
||||||
|
"git ls-files *" = "allow";
|
||||||
|
"git ls-tree *" = "allow";
|
||||||
|
"git remote *" = "ask";
|
||||||
|
"git rev-list *" = "allow";
|
||||||
|
"git rev-parse *" = "allow";
|
||||||
|
"git stash *" = "ask";
|
||||||
|
"git status *" = "allow";
|
||||||
};
|
};
|
||||||
"external_directory" = {
|
"external_directory" = {
|
||||||
"/nix/store/**" = "allow";
|
"/nix/store/**" = "allow";
|
||||||
@@ -305,8 +362,8 @@
|
|||||||
"question" = "allow";
|
"question" = "allow";
|
||||||
};
|
};
|
||||||
plugin = [
|
plugin = [
|
||||||
"opencode-claude-auth@latest" # https://github.com/griffinmartin/opencode-claude-auth
|
# "opencode-claude-auth@latest" # https://github.com/griffinmartin/opencode-claude-auth
|
||||||
"@tarquinen/opencode-dcp@latest" # better compacting
|
# "@tarquinen/opencode-dcp@latest" # better compacting
|
||||||
# "opencode-lmstudio@0.3.1"
|
# "opencode-lmstudio@0.3.1"
|
||||||
# "@slkiser/opencode-quota"
|
# "@slkiser/opencode-quota"
|
||||||
];
|
];
|
||||||
@@ -412,15 +469,11 @@
|
|||||||
kdePackages.kdenlive
|
kdePackages.kdenlive
|
||||||
# davinci-resolve
|
# davinci-resolve
|
||||||
krita
|
krita
|
||||||
# makemkv # TODO: Broken on 2026-08-31
|
makemkv
|
||||||
lrcget
|
lrcget
|
||||||
# msty
|
# msty
|
||||||
# jellyfin-media-player # CVE, can't install
|
|
||||||
jellyfin-desktop
|
jellyfin-desktop
|
||||||
jellyfin-mpv-shim
|
jellyfin-mpv-shim
|
||||||
# tidal-hifi
|
|
||||||
# tidal-dl-ng # TODO: Borked
|
|
||||||
# spotdl
|
|
||||||
tiddl
|
tiddl
|
||||||
picard
|
picard
|
||||||
handbrake
|
handbrake
|
||||||
|
|||||||
@@ -124,6 +124,7 @@ in {
|
|||||||
matplotlib
|
matplotlib
|
||||||
requests
|
requests
|
||||||
pygments
|
pygments
|
||||||
|
pyyaml
|
||||||
]))
|
]))
|
||||||
|
|
||||||
(rWrapper.override {
|
(rWrapper.override {
|
||||||
|
|||||||
@@ -44,7 +44,7 @@ in {
|
|||||||
nix-search-tv # Search nixpkgs, nur, nixos options and homemanager options
|
nix-search-tv # Search nixpkgs, nur, nixos options and homemanager options
|
||||||
nix-tree # Browse the nix store sorted by size (gdu for closures)
|
nix-tree # Browse the nix store sorted by size (gdu for closures)
|
||||||
|
|
||||||
# TODO: Broken on 2026-08-31 (also re-enable services after fixing!)
|
# TODO: Still broken on 2026-09-09
|
||||||
# inputs.nps.packages.${pkgs.stdenv.hostPlatform.system}.default # Search nixpkgs
|
# inputs.nps.packages.${pkgs.stdenv.hostPlatform.system}.default # Search nixpkgs
|
||||||
|
|
||||||
# Video/Image/Audio utils
|
# Video/Image/Audio utils
|
||||||
@@ -161,7 +161,7 @@ in {
|
|||||||
vlc
|
vlc
|
||||||
audacity
|
audacity
|
||||||
# ferdium
|
# ferdium
|
||||||
# feishin # electron :(
|
feishin # electron :(
|
||||||
playerctl # Media player control
|
playerctl # Media player control
|
||||||
czkawka-full # file deduplicator
|
czkawka-full # file deduplicator
|
||||||
binaryninja-free # reverse engineering
|
binaryninja-free # reverse engineering
|
||||||
@@ -169,7 +169,9 @@ in {
|
|||||||
# opencode-desktop
|
# opencode-desktop
|
||||||
lmstudio # TODO: Ollama
|
lmstudio # TODO: Ollama
|
||||||
claude-desktop
|
claude-desktop
|
||||||
|
opencode-desktop
|
||||||
upscayl
|
upscayl
|
||||||
|
calibre
|
||||||
|
|
||||||
# Office
|
# Office
|
||||||
kdePackages.wacomtablet # For xournalpp/krita
|
kdePackages.wacomtablet # For xournalpp/krita
|
||||||
@@ -184,7 +186,7 @@ in {
|
|||||||
# helvum # unmaintained
|
# helvum # unmaintained
|
||||||
crosspipe
|
crosspipe
|
||||||
# nautilus # This is the worst file manager I've ever used
|
# nautilus # This is the worst file manager I've ever used
|
||||||
# font-manager # Previews fonts, but doesn't set them # TODO: Broken on 2026-08-31
|
font-manager # Previews fonts, but doesn't set them
|
||||||
gparted
|
gparted
|
||||||
resources
|
resources
|
||||||
# celluloid
|
# celluloid
|
||||||
|
|||||||
@@ -65,9 +65,10 @@ in {
|
|||||||
'';
|
'';
|
||||||
|
|
||||||
# https://yazi-rs.github.io/docs/configuration/yazi
|
# https://yazi-rs.github.io/docs/configuration/yazi
|
||||||
# "$n": The n-th selected file (1...n)
|
# %sN: The N-th selected file (1...n)
|
||||||
# "$@": All selected files
|
# %s: All selected files
|
||||||
# "$0": The hovered file
|
# %h: The hovered file (shell keybindings)
|
||||||
|
# File placeholders are shell-escaped by Yazi; do not quote them.
|
||||||
settings = {
|
settings = {
|
||||||
mgr = {
|
mgr = {
|
||||||
show_hidden = false;
|
show_hidden = false;
|
||||||
@@ -80,41 +81,43 @@ in {
|
|||||||
opener = {
|
opener = {
|
||||||
play = [
|
play = [
|
||||||
{
|
{
|
||||||
run = ''mpv "$@"'';
|
run = ''mpv %s'';
|
||||||
orphan = true;
|
orphan = true;
|
||||||
desc = "Play selection with mpv";
|
desc = "Play selection with mpv";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
run = ''vlc "$@"'';
|
run = ''vlc %s'';
|
||||||
orphan = true;
|
orphan = true;
|
||||||
desc = "Play selection with vlc";
|
desc = "Play selection with vlc";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
edit = [
|
edit = [
|
||||||
{
|
{
|
||||||
run = ''$EDITOR "$@"'';
|
run = ''$EDITOR %s'';
|
||||||
block = true;
|
block = true;
|
||||||
desc = "Edit selection";
|
desc = "Edit selection";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
open = [
|
open = [
|
||||||
{
|
{
|
||||||
run = ''xdg-open "$@"'';
|
run = ''xdg-open %s1'';
|
||||||
desc = "Open selection with xdg-open";
|
orphan = true;
|
||||||
|
desc = "Open first selected file with xdg-open";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
run = ''imv "$@"'';
|
run = ''imv %s'';
|
||||||
|
orphan = true;
|
||||||
desc = "Open selection with imv";
|
desc = "Open selection with imv";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
# TODO: For some reason, junction does not exit after choosing an application...
|
run = ''junction %s'';
|
||||||
run = ''junction "$@"'';
|
orphan = true;
|
||||||
desc = "Open selection with junction";
|
desc = "Open selection with junction";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
extract = [
|
extract = [
|
||||||
{
|
{
|
||||||
run = ''ouch decompress -y "$@"'';
|
run = ''ouch decompress -y %s'';
|
||||||
desc = "Extract selection";
|
desc = "Extract selection";
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
@@ -219,7 +222,7 @@ in {
|
|||||||
"<C-p>"
|
"<C-p>"
|
||||||
"d"
|
"d"
|
||||||
];
|
];
|
||||||
run = ''shell -- ripdrag -a -n "$@"'';
|
run = ''shell --orphan -- ripdrag -a -n %s'';
|
||||||
desc = "Drag & drop selection";
|
desc = "Drag & drop selection";
|
||||||
}
|
}
|
||||||
{
|
{
|
||||||
@@ -243,7 +246,7 @@ in {
|
|||||||
"<C-p>"
|
"<C-p>"
|
||||||
"w"
|
"w"
|
||||||
];
|
];
|
||||||
run = ''wl-copy < "$0"'';
|
run = ''shell -- wl-copy < %h'';
|
||||||
desc = "Copy hovered file contents using wl-copy";
|
desc = "Copy hovered file contents using wl-copy";
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -255,7 +258,7 @@ in {
|
|||||||
{
|
{
|
||||||
on = "y";
|
on = "y";
|
||||||
run = [
|
run = [
|
||||||
''shell -- for path in "$@"; do echo "file://$path"; done | wl-copy -t text/uri-list''
|
''shell -- for path in %s; do echo "file://$path"; done | wl-copy -t text/uri-list''
|
||||||
"yank"
|
"yank"
|
||||||
];
|
];
|
||||||
desc = "Copy files to system clipboard on yank";
|
desc = "Copy files to system clipboard on yank";
|
||||||
|
|||||||
+37
-31
@@ -29,36 +29,36 @@
|
|||||||
# Remove this after jetbrains.jdk builds again (nixpkgs issue 425328)
|
# Remove this after jetbrains.jdk builds again (nixpkgs issue 425328)
|
||||||
# jetbrains.rider = pkgs-stable.jetbrains.rider;
|
# jetbrains.rider = pkgs-stable.jetbrains.rider;
|
||||||
|
|
||||||
jetbrains =
|
# jetbrains =
|
||||||
prev.jetbrains
|
# prev.jetbrains
|
||||||
// {
|
# // {
|
||||||
clion = prev.jetbrains.clion.overrideAttrs (oldAttrs: rec {
|
# clion = prev.jetbrains.clion.overrideAttrs (oldAttrs: rec {
|
||||||
version = "261.22158.47"; # March 6, 2026
|
# version = "261.22158.47"; # March 6, 2026
|
||||||
|
#
|
||||||
src = prev.fetchurl {
|
# src = prev.fetchurl {
|
||||||
url = "https://download-cdn.jetbrains.com/cpp/CLion-${version}.tar.gz";
|
# url = "https://download-cdn.jetbrains.com/cpp/CLion-${version}.tar.gz";
|
||||||
|
#
|
||||||
# hash = "sha256-h6tnemVnV1YEsvIndwrq2sMsRZYuvTWMU5oqj/hkjdY="; # 261.21849.6
|
# # hash = "sha256-h6tnemVnV1YEsvIndwrq2sMsRZYuvTWMU5oqj/hkjdY="; # 261.21849.6
|
||||||
hash = "sha256-FUHNRioJvjwOWN+FkXEr3+NWR+QVxaZUOkJ0egQkcCQ="; # 261.22158.47
|
# hash = "sha256-FUHNRioJvjwOWN+FkXEr3+NWR+QVxaZUOkJ0egQkcCQ="; # 261.22158.47
|
||||||
};
|
# };
|
||||||
|
#
|
||||||
# autoPatchelfIgnoreMissingDeps = [
|
# # autoPatchelfIgnoreMissingDeps = [
|
||||||
# "libcrypto.so.1.1"
|
# # "libcrypto.so.1.1"
|
||||||
# "libssl.so.1.1"
|
# # "libssl.so.1.1"
|
||||||
# ];
|
# # ];
|
||||||
|
#
|
||||||
postFixup = ''
|
# postFixup = ''
|
||||||
# Patch python3.12 shared libs that the upstream glob (python3.8) misses
|
# # Patch python3.12 shared libs that the upstream glob (python3.8) misses
|
||||||
find $out -path '*/python3.*/lib-dynload/*.so' -exec patchelf \
|
# find $out -path '*/python3.*/lib-dynload/*.so' -exec patchelf \
|
||||||
--replace-needed libssl.so.1.1 libssl.so \
|
# --replace-needed libssl.so.1.1 libssl.so \
|
||||||
--replace-needed libcrypto.so.1.1 libcrypto.so \
|
# --replace-needed libcrypto.so.1.1 libcrypto.so \
|
||||||
--replace-needed libcrypt.so.1 libcrypt.so \
|
# --replace-needed libcrypt.so.1 libcrypt.so \
|
||||||
{} +
|
# {} +
|
||||||
|
#
|
||||||
${oldAttrs.postFixup or ""}
|
# ${oldAttrs.postFixup or ""}
|
||||||
'';
|
# '';
|
||||||
});
|
# });
|
||||||
};
|
# };
|
||||||
|
|
||||||
# Now in Nixpkgs
|
# Now in Nixpkgs
|
||||||
# neovide = prev.neovide.overrideAttrs (finalAttrs: prevAttrs: {
|
# neovide = prev.neovide.overrideAttrs (finalAttrs: prevAttrs: {
|
||||||
@@ -94,4 +94,10 @@
|
|||||||
};
|
};
|
||||||
in
|
in
|
||||||
# Composes a list of overlays and returns a single overlay function that combines them.
|
# Composes a list of overlays and returns a single overlay function that combines them.
|
||||||
nixpkgs.lib.composeManyExtensions [additions modifications]
|
nixpkgs.lib.composeManyExtensions [
|
||||||
|
additions
|
||||||
|
modifications
|
||||||
|
|
||||||
|
# This is already a complete overlay with final: prev:, so it must be composed directly
|
||||||
|
(import ./latexminted.nix)
|
||||||
|
]
|
||||||
|
|||||||
@@ -0,0 +1,67 @@
|
|||||||
|
# Workaround for a broken `minted` in nixpkgs.
|
||||||
|
#
|
||||||
|
# The TeX Live snapshot in nixpkgs (2026-03-01) predates minted 3.8.0
|
||||||
|
# (2026-03-04) and still ships 3.7.0 together with a bundled `latexminted`
|
||||||
|
# 0.6.0 that does not run. Two independent replacements are needed:
|
||||||
|
#
|
||||||
|
# - the run container: minted.sty from the upstream 3.8.0 release, which
|
||||||
|
# requires `latexminted` >= 0.7.0;
|
||||||
|
# - the bin container: `pkgs.latexminted` (0.7.1), which works.
|
||||||
|
#
|
||||||
|
# The LaTeX package and the Python executable are versioned separately, hence
|
||||||
|
# the two unrelated version numbers.
|
||||||
|
#
|
||||||
|
# Delete this file once nixpkgs ships minted >= 3.8.0.
|
||||||
|
final: prev: let
|
||||||
|
version = "3.8.0";
|
||||||
|
|
||||||
|
# Byte-identical to the CTAN 3.8.0 release, but pinned and already unpacked
|
||||||
|
# (CTAN only ships minted.dtx, which would have to be run through docstrip).
|
||||||
|
src = prev.fetchFromGitHub {
|
||||||
|
owner = "gpoore";
|
||||||
|
repo = "minted";
|
||||||
|
rev = "631f7e8e93f37d4f6e7767ff45692d53e7c7360d"; # "[latex] minted v3.8.0"
|
||||||
|
hash = "sha256-xUWScWRR62ikRxxz/YEauWLirvhsQPCcyE1O6cpWZRw=";
|
||||||
|
};
|
||||||
|
|
||||||
|
minted = prev.texlive.pkgs.minted;
|
||||||
|
|
||||||
|
# texlive.withPackages reads pname/tlType/tlDeps/... off the containers, so
|
||||||
|
# reuse the original metadata instead of reconstructing it.
|
||||||
|
container = name: container: script:
|
||||||
|
prev.runCommand "minted-${version}${name}" {
|
||||||
|
inherit (container) meta;
|
||||||
|
passthru =
|
||||||
|
container.passthru
|
||||||
|
// {
|
||||||
|
inherit version;
|
||||||
|
};
|
||||||
|
}
|
||||||
|
script;
|
||||||
|
in {
|
||||||
|
texlive =
|
||||||
|
prev.texlive
|
||||||
|
// {
|
||||||
|
pkgs =
|
||||||
|
prev.texlive.pkgs
|
||||||
|
// {
|
||||||
|
minted =
|
||||||
|
minted
|
||||||
|
// {
|
||||||
|
tex = container "-tex" minted.tex ''
|
||||||
|
install -Dm444 -t "$out"/tex/latex/minted \
|
||||||
|
${src}/latex/minted/minted.sty \
|
||||||
|
${src}/latex/minted/minted1.sty \
|
||||||
|
${src}/latex/minted/minted2.sty
|
||||||
|
'';
|
||||||
|
|
||||||
|
# A bare symlink is enough: texlive.withPackages resolves and wraps
|
||||||
|
# everything under bin/ itself.
|
||||||
|
out = container "" minted.out ''
|
||||||
|
mkdir -p "$out"/bin
|
||||||
|
ln -s ${prev.lib.getExe prev.latexminted} "$out"/bin/latexminted
|
||||||
|
'';
|
||||||
|
};
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
+3
-3
@@ -394,9 +394,9 @@ with mylib.networking; {
|
|||||||
};
|
};
|
||||||
|
|
||||||
# Trims the journal if too large
|
# Trims the journal if too large
|
||||||
journald.extraConfig = ''
|
journald.settings.Journal = {
|
||||||
SystemMaxUse=50M
|
SystemMaxUse = "50M";
|
||||||
'';
|
};
|
||||||
|
|
||||||
acpid.enable = true;
|
acpid.enable = true;
|
||||||
dbus.enable = true;
|
dbus.enable = true;
|
||||||
|
|||||||
@@ -139,6 +139,8 @@
|
|||||||
sops-nix.secrets.${username} = [
|
sops-nix.secrets.${username} = [
|
||||||
"makemkv-app-key"
|
"makemkv-app-key"
|
||||||
"restic-repo-key"
|
"restic-repo-key"
|
||||||
|
"context7-api-key"
|
||||||
|
"obsidian-rest-api-key"
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|||||||
@@ -7,7 +7,7 @@
|
|||||||
}: let
|
}: let
|
||||||
vectorchordVersion = "0.4.2";
|
vectorchordVersion = "0.4.2";
|
||||||
pgvectorsVersion = "0.2.0";
|
pgvectorsVersion = "0.2.0";
|
||||||
immichVersion = "3.0.1-cuda";
|
immichVersion = "3.2.0-cuda";
|
||||||
in {
|
in {
|
||||||
virtualisation.oci-containers.containers = {
|
virtualisation.oci-containers.containers = {
|
||||||
immich-database = {
|
immich-database = {
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
pkgs,
|
pkgs,
|
||||||
...
|
...
|
||||||
}: let
|
}: let
|
||||||
jellyfinVersion = "10.11.2";
|
jellyfinVersion = "version-12.1ubu2604";
|
||||||
in {
|
in {
|
||||||
virtualisation.oci-containers.containers = {
|
virtualisation.oci-containers.containers = {
|
||||||
jellyfin = {
|
jellyfin = {
|
||||||
|
|||||||
@@ -122,6 +122,7 @@ in {
|
|||||||
# The shit some applications add to ~/ without asking
|
# The shit some applications add to ~/ without asking
|
||||||
# (mkUDir ".android" m755) # Unity
|
# (mkUDir ".android" m755) # Unity
|
||||||
(mkUDir ".claude" m755)
|
(mkUDir ".claude" m755)
|
||||||
|
(mkUDir ".codex" m755)
|
||||||
# (mkUDir ".comfy" m755)
|
# (mkUDir ".comfy" m755)
|
||||||
(mkUDir ".docker" m755)
|
(mkUDir ".docker" m755)
|
||||||
# (mkUDir ".gradle" m755) # Unity
|
# (mkUDir ".gradle" m755) # Unity
|
||||||
@@ -157,12 +158,14 @@ in {
|
|||||||
|
|
||||||
# Config
|
# Config
|
||||||
# (mkUDir ".config/.android" m755) # Unity
|
# (mkUDir ".config/.android" m755) # Unity
|
||||||
|
(mkUDir ".config/ai.opencode.desktop" m755)
|
||||||
# (mkUDir ".config/beekeeper-studio" m755)
|
# (mkUDir ".config/beekeeper-studio" m755)
|
||||||
(mkUDir ".config/beets" m755)
|
(mkUDir ".config/beets" m755)
|
||||||
(mkUDir ".config/blender" m755)
|
(mkUDir ".config/blender" m755)
|
||||||
(mkUDir ".config/chromium" m755)
|
(mkUDir ".config/chromium" m755)
|
||||||
(mkUDir ".config/Claude" m755) # Claude desktop
|
(mkUDir ".config/Claude" m755) # Claude desktop
|
||||||
(mkUDir ".config/Code" m755)
|
(mkUDir ".config/Code" m755)
|
||||||
|
(mkUDir ".config/Codex" m755)
|
||||||
(mkUDir ".config/Ferdium" m755)
|
(mkUDir ".config/Ferdium" m755)
|
||||||
(mkUDir ".config/feishin" m755)
|
(mkUDir ".config/feishin" m755)
|
||||||
(mkUDir ".config/fish/completions" m755)
|
(mkUDir ".config/fish/completions" m755)
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ in {
|
|||||||
${mime.defaultTextEditor} = mime.textTypes;
|
${mime.defaultTextEditor} = mime.textTypes;
|
||||||
${mime.defaultFileBrowser} = ["inode/directory"];
|
${mime.defaultFileBrowser} = ["inode/directory"];
|
||||||
${mime.defaultWebBrowser} = mime.webTypes;
|
${mime.defaultWebBrowser} = mime.webTypes;
|
||||||
${mime.defaultPdfViewer} = ["application/pdf"];
|
${mime.defaultPdfViewer} = ["application/pdf" "application/epub+zip"];
|
||||||
${mime.defaultImageViewer} = mime.imageTypes;
|
${mime.defaultImageViewer} = mime.imageTypes;
|
||||||
|
|
||||||
# If audio and video player are equal, we assign all types to the audio player,
|
# If audio and video player are equal, we assign all types to the audio player,
|
||||||
@@ -75,6 +75,11 @@ in {
|
|||||||
"chromium-browser.desktop"
|
"chromium-browser.desktop"
|
||||||
"com.google.Chrome.desktop"
|
"com.google.Chrome.desktop"
|
||||||
"firefox.desktop"
|
"firefox.desktop"
|
||||||
|
"org.onlyoffice.desktopeditors.desktop"
|
||||||
|
"calibre-ebook-edit.desktop"
|
||||||
|
"calibre-ebook-viewer.desktop"
|
||||||
|
"calibre-gui.desktop"
|
||||||
|
"calibre-lrfviewer.desktop"
|
||||||
];
|
];
|
||||||
"text/plain" = [
|
"text/plain" = [
|
||||||
"firefox.desktop"
|
"firefox.desktop"
|
||||||
|
|||||||
@@ -11,6 +11,8 @@ jellyfin-password: ENC[AES256_GCM,data:ugfwgpkIiLY0O+m/UGnBB5AFPBkCcai+RQOkxiCSo
|
|||||||
#
|
#
|
||||||
makemkv-app-key: ENC[AES256_GCM,data:/pTxr4q4ucJLx5VI8ySzOgd4g1s+6lcZNe4crxRmidTYrhJ0I6V3CIhm4wLC105W+Xka6HIZTqPn8SbqcMC4Dt3wSus=,iv:aYsGobD+Vl/VUNAHcAxQb7HEmLT8aXyKNOELgzvKDH4=,tag:xhnVb/ns6VZEnTuoUv9w5A==,type:str]
|
makemkv-app-key: ENC[AES256_GCM,data:/pTxr4q4ucJLx5VI8ySzOgd4g1s+6lcZNe4crxRmidTYrhJ0I6V3CIhm4wLC105W+Xka6HIZTqPn8SbqcMC4Dt3wSus=,iv:aYsGobD+Vl/VUNAHcAxQb7HEmLT8aXyKNOELgzvKDH4=,tag:xhnVb/ns6VZEnTuoUv9w5A==,type:str]
|
||||||
restic-repo-key: ENC[AES256_GCM,data:lSFuhjbhdQq4cabAVFGQ4kuaJxb7EhXgBDlgoEQWJhs=,iv:7IhGDBYEwY1TwLvc/4DOkUBQ3eqSszZcKwnT7Lllfps=,tag:yJVlMi9X0W+Kh3zMkb0QuA==,type:str]
|
restic-repo-key: ENC[AES256_GCM,data:lSFuhjbhdQq4cabAVFGQ4kuaJxb7EhXgBDlgoEQWJhs=,iv:7IhGDBYEwY1TwLvc/4DOkUBQ3eqSszZcKwnT7Lllfps=,tag:yJVlMi9X0W+Kh3zMkb0QuA==,type:str]
|
||||||
|
context7-api-key: ENC[AES256_GCM,data:lZfrz5pBDybBkswgZM3jKLM9bdXOXeFUI9wFB8BJ5aLYqmf2oRHIJi/85w==,iv:MQYZKsTG++CYfpJret1WSv7+q2ZmONCDl4OwdRo+YUk=,tag:MrWBn3CKDUDZLLIFZWV0tA==,type:str]
|
||||||
|
obsidian-rest-api-key: ENC[AES256_GCM,data:+CmQAX0AoSmCPMF9QL3NkWVArt7N0Ci9obHKpwQUPolcdsTnAsPMWu6GAWVvqs8Qmjz5Hk3gwM0YP2JdLEF0cw==,iv:U1SsPdiJIT7q+md1Q61Ro530s7vrl+XBgu+6/ffcrEQ=,tag:xrTRPve9DcumQjlr+aKsLg==,type:str]
|
||||||
#
|
#
|
||||||
#ENC[AES256_GCM,data:Raagjz1qPvXC,iv:OSWTKaIlmo1paU2ZZn20XMeZ2gdM52pHmVZ3m2ngCdI=,tag:bPCdvjOFjpxxkrwA7Mhl5Q==,type:comment]
|
#ENC[AES256_GCM,data:Raagjz1qPvXC,iv:OSWTKaIlmo1paU2ZZn20XMeZ2gdM52pHmVZ3m2ngCdI=,tag:bPCdvjOFjpxxkrwA7Mhl5Q==,type:comment]
|
||||||
#
|
#
|
||||||
@@ -39,7 +41,7 @@ sops:
|
|||||||
FAbbvZZ/EdIk/njLEcayFN7B4ftTcD/f4XJZiyosilZnIkk76bMOHA==
|
FAbbvZZ/EdIk/njLEcayFN7B4ftTcD/f4XJZiyosilZnIkk76bMOHA==
|
||||||
-----END AGE ENCRYPTED FILE-----
|
-----END AGE ENCRYPTED FILE-----
|
||||||
recipient: age14ph8vrj657e7s35d60xehzuq46t9zd6pzcm6pw4jragzrvf6xs9s77usnm
|
recipient: age14ph8vrj657e7s35d60xehzuq46t9zd6pzcm6pw4jragzrvf6xs9s77usnm
|
||||||
lastmodified: "2026-07-02T19:27:51Z"
|
lastmodified: "2026-09-14T21:08:40Z"
|
||||||
mac: ENC[AES256_GCM,data:IkpzDK4F1pEoGx1WyG8ksgMFuEa2h9KeF3m3PzM8KQkWo9iVt3jJn80jHEzWAm8riWIbo7fRkxyRetlSFTZf+MrByotgkWVVx6dMIVNYAOcg2IOK3s4NnX0L65MjbfWGQp/d27QzzEbd14WyklMWm2UO3ei82tF+UKYUEFJ2BWk=,iv:8LimsncylU+HhvVKNnjfyqZskZA72FQe92C4VrNWyQ0=,tag:L6CEno9m3ZncOskjZibq+Q==,type:str]
|
mac: ENC[AES256_GCM,data:tfkmsJfWYV11ruw8fCUkJ2gWQAvQJ4Gmsz72LnmiCdlvzeo4x9iM268ZJnuaPRuv6BXLp2XGGA4CbqhfZbO6cRxAawVfbxY2IRSo1JWITIY8qxKLb07jDMpQu/JjJz7J5T556UEvOsW6HrK3d0xvNlJ4yQIuVCBjttKTdRu5g9Y=,iv:mV5i0xJGu6fnSNPLm9J3NDDgN+sB6iadue917UjR+oU=,tag:h/vaeQ02wK/qKANerWIywQ==,type:str]
|
||||||
unencrypted_suffix: _unencrypted
|
unencrypted_suffix: _unencrypted
|
||||||
version: 3.13.1
|
version: 3.13.3
|
||||||
|
|||||||
Reference in New Issue
Block a user