├── .envrc ├── .github └── workflows │ └── ci.yml ├── .gitignore ├── LICENSE ├── README.md ├── default.nix ├── flake.lock ├── flake.nix ├── lib.nix ├── shell.nix ├── tests.nix └── types.nix /.envrc: -------------------------------------------------------------------------------- 1 | use nix 2 | -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adisbladis/korora/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .direnv 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adisbladis/korora/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adisbladis/korora/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adisbladis/korora/HEAD/default.nix -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adisbladis/korora/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adisbladis/korora/HEAD/flake.nix -------------------------------------------------------------------------------- /lib.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adisbladis/korora/HEAD/lib.nix -------------------------------------------------------------------------------- /shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adisbladis/korora/HEAD/shell.nix -------------------------------------------------------------------------------- /tests.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adisbladis/korora/HEAD/tests.nix -------------------------------------------------------------------------------- /types.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/adisbladis/korora/HEAD/types.nix --------------------------------------------------------------------------------