gitextract_shy0x3kh/ ├── .envrc ├── .github/ │ └── workflows/ │ └── ci.yaml ├── .gitignore ├── .vscode/ │ ├── extensions.json │ └── settings.json ├── LICENSE ├── README.md ├── activate/ │ ├── activate.nu │ ├── default.nix │ └── nu.nix ├── dev/ │ └── flake.nix ├── doc/ │ ├── .gitignore │ ├── examples.md │ ├── flake.nix │ ├── guide/ │ │ ├── activate.md │ │ ├── autowiring.md │ │ ├── outputs.md │ │ ├── specialArgs.md │ │ └── templates.md │ ├── guide.md │ ├── history.md │ ├── howto.md │ ├── index.md │ ├── index.yaml │ ├── mod.just │ └── start.md ├── examples/ │ ├── home/ │ │ └── flake.nix │ ├── linux/ │ │ └── flake.nix │ └── macos/ │ └── flake.nix ├── flake.nix ├── justfile ├── nix/ │ └── modules/ │ ├── configurations/ │ │ └── default.nix │ └── flake-parts/ │ ├── autowire.nix │ ├── default.nix │ ├── lib.nix │ └── packages.nix └── vira.hs