├── .github ├── dependabot.yml └── workflows │ └── update.yml ├── .mergify.yml ├── LICENSE ├── README.md ├── comma-wrapper.nix ├── darwin-module.nix ├── default.nix ├── flake.lock ├── flake.nix ├── garnix.yaml ├── generated.nix ├── home-manager-module.nix ├── nix-index-wrapper.nix ├── nix ├── home-manager-options.nix └── shared.nix ├── nixos-module.nix └── tests.nix /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/.github/workflows/update.yml -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/.mergify.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/README.md -------------------------------------------------------------------------------- /comma-wrapper.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/comma-wrapper.nix -------------------------------------------------------------------------------- /darwin-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/darwin-module.nix -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/flake.nix -------------------------------------------------------------------------------- /garnix.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/garnix.yaml -------------------------------------------------------------------------------- /generated.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/generated.nix -------------------------------------------------------------------------------- /home-manager-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/home-manager-module.nix -------------------------------------------------------------------------------- /nix-index-wrapper.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/nix-index-wrapper.nix -------------------------------------------------------------------------------- /nix/home-manager-options.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/nix/home-manager-options.nix -------------------------------------------------------------------------------- /nix/shared.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/nix/shared.nix -------------------------------------------------------------------------------- /nixos-module.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/nixos-module.nix -------------------------------------------------------------------------------- /tests.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-index-database/HEAD/tests.nix --------------------------------------------------------------------------------