├── .gitea └── workflows │ └── ci.yaml ├── .github └── workflows │ └── ci.yaml ├── LICENSE ├── README.md ├── default.nix ├── flake.nix ├── fmt.sh ├── renovate.json ├── select.nix └── tests.nix /.gitea/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clan-lol/nix-select/HEAD/.gitea/workflows/ci.yaml -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clan-lol/nix-select/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clan-lol/nix-select/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clan-lol/nix-select/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clan-lol/nix-select/HEAD/default.nix -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clan-lol/nix-select/HEAD/flake.nix -------------------------------------------------------------------------------- /fmt.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clan-lol/nix-select/HEAD/fmt.sh -------------------------------------------------------------------------------- /renovate.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clan-lol/nix-select/HEAD/renovate.json -------------------------------------------------------------------------------- /select.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clan-lol/nix-select/HEAD/select.nix -------------------------------------------------------------------------------- /tests.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/clan-lol/nix-select/HEAD/tests.nix --------------------------------------------------------------------------------