├── .envrc ├── .gitignore ├── .vscode └── extensions.json ├── LICENSE ├── README.md ├── default.nix ├── flake.lock ├── flake.nix └── script.jq /.envrc: -------------------------------------------------------------------------------- 1 | use flake 2 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | /.direnv 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/cachix-push/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/cachix-push/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/cachix-push/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/cachix-push/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/cachix-push/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/cachix-push/HEAD/flake.nix -------------------------------------------------------------------------------- /script.jq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/juspay/cachix-push/HEAD/script.jq --------------------------------------------------------------------------------