├── .gitignore ├── LICENSE ├── README.md ├── haskell └── shell.nix ├── rust └── shell.nix ├── terraform └── shell.nix └── web └── shell.nix /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrVanDalo/nix-shell-mix/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrVanDalo/nix-shell-mix/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrVanDalo/nix-shell-mix/HEAD/README.md -------------------------------------------------------------------------------- /haskell/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrVanDalo/nix-shell-mix/HEAD/haskell/shell.nix -------------------------------------------------------------------------------- /rust/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrVanDalo/nix-shell-mix/HEAD/rust/shell.nix -------------------------------------------------------------------------------- /terraform/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrVanDalo/nix-shell-mix/HEAD/terraform/shell.nix -------------------------------------------------------------------------------- /web/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mrVanDalo/nix-shell-mix/HEAD/web/shell.nix --------------------------------------------------------------------------------