corpus

Log | Files | Refs | README | LICENSE

commit 8a2ffb58b5cd338c373c626d7fde0def8501ba77
parent d2a0549aa298bc4366264e6ba2e5bf6b11d37c23
Author: mtmn <miro@haravara.org>
Date:   Mon, 13 Apr 2026 00:50:42 +0200

chore: add devenv and cachix

Diffstat:
M.gitignore | 1+
Adevenv.lock | 66++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Adevenv.nix | 3+++
3 files changed, 70 insertions(+), 0 deletions(-)

diff --git a/.gitignore b/.gitignore @@ -19,3 +19,4 @@ client.js server.log scrobbler.db* scorpus.db* +.devenv diff --git a/devenv.lock b/devenv.lock @@ -0,0 +1,65 @@ +{ + "nodes": { + "devenv": { + "locked": { + "dir": "src/modules", + "lastModified": 1775997427, + "narHash": "sha256-JUXHTRFoHQanKoAKvHTM4Z0YdbCnmZUGqgMPw95KxUw=", + "owner": "cachix", + "repo": "devenv", + "rev": "88ac631cf8b6582ed372b8b22e3bd12240c61f64", + "type": "github" + }, + "original": { + "dir": "src/modules", + "owner": "cachix", + "repo": "devenv", + "type": "github" + } + }, + "nixpkgs": { + "inputs": { + "nixpkgs-src": "nixpkgs-src" + }, + "locked": { + "lastModified": 1774287239, + "narHash": "sha256-W3krsWcDwYuA3gPWsFA24YAXxOFUL6iIlT6IknAoNSE=", + "owner": "cachix", + "repo": "devenv-nixpkgs", + "rev": "fa7125ea7f1ae5430010a6e071f68375a39bd24c", + "type": "github" + }, + "original": { + "owner": "cachix", + "ref": "rolling", + "repo": "devenv-nixpkgs", + "type": "github" + } + }, + "nixpkgs-src": { + "flake": false, + "locked": { + "lastModified": 1773840656, + "narHash": "sha256-9tpvMGFteZnd3gRQZFlRCohVpqooygFuy9yjuyRL2C0=", + "owner": "NixOS", + "repo": "nixpkgs", + "rev": "9cf7092bdd603554bd8b63c216e8943cf9b12512", + "type": "github" + }, + "original": { + "owner": "NixOS", + "ref": "nixpkgs-unstable", + "repo": "nixpkgs", + "type": "github" + } + }, + "root": { + "inputs": { + "devenv": "devenv", + "nixpkgs": "nixpkgs" + } + } + }, + "root": "root", + "version": 7 +} +\ No newline at end of file diff --git a/devenv.nix b/devenv.nix @@ -0,0 +1,3 @@ +{ + cachix.push = "scorpus"; +}