├── .github ├── dependabot.yml └── workflows │ └── test.yml ├── .mergify.yml ├── LICENSE ├── README.md ├── default.nix ├── envs ├── arduino │ ├── README.md │ └── shell.nix ├── buildroot │ ├── README.md │ └── shell.nix ├── cc2538-bsl │ ├── README.md │ └── shell.nix ├── firefox │ ├── README.md │ └── shell.nix ├── git │ ├── README.md │ └── shell.nix ├── github-pages │ ├── .envrc │ ├── Gemfile │ ├── Makefile │ ├── README.md │ └── shell.nix ├── home-assistant │ └── shell.nix ├── infinisim │ ├── README.md │ └── shell.nix ├── jruby │ ├── README.md │ └── shell.nix ├── ladybird │ ├── README.md │ └── shell.nix ├── nannou │ └── shell.nix ├── openwrt │ ├── README.md │ └── shell.nix ├── phoronix-test-suite │ ├── README.md │ └── shell.nix ├── spec-benchmark │ ├── README.md │ └── shell.nix ├── xilinx-vitis │ ├── README.md │ └── shell.nix ├── yocto │ └── shell.nix └── zmk │ ├── README.md │ └── shell.nix └── flake.nix /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.mergify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/.mergify.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/default.nix -------------------------------------------------------------------------------- /envs/arduino/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/arduino/README.md -------------------------------------------------------------------------------- /envs/arduino/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/arduino/shell.nix -------------------------------------------------------------------------------- /envs/buildroot/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/buildroot/README.md -------------------------------------------------------------------------------- /envs/buildroot/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/buildroot/shell.nix -------------------------------------------------------------------------------- /envs/cc2538-bsl/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/cc2538-bsl/README.md -------------------------------------------------------------------------------- /envs/cc2538-bsl/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/cc2538-bsl/shell.nix -------------------------------------------------------------------------------- /envs/firefox/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/firefox/README.md -------------------------------------------------------------------------------- /envs/firefox/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/firefox/shell.nix -------------------------------------------------------------------------------- /envs/git/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/git/README.md -------------------------------------------------------------------------------- /envs/git/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/git/shell.nix -------------------------------------------------------------------------------- /envs/github-pages/.envrc: -------------------------------------------------------------------------------- 1 | use nix 2 | layout ruby 3 | -------------------------------------------------------------------------------- /envs/github-pages/Gemfile: -------------------------------------------------------------------------------- 1 | source 'https://rubygems.org' 2 | gem 'github-pages' 3 | -------------------------------------------------------------------------------- /envs/github-pages/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/github-pages/Makefile -------------------------------------------------------------------------------- /envs/github-pages/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/github-pages/README.md -------------------------------------------------------------------------------- /envs/github-pages/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/github-pages/shell.nix -------------------------------------------------------------------------------- /envs/home-assistant/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/home-assistant/shell.nix -------------------------------------------------------------------------------- /envs/infinisim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/infinisim/README.md -------------------------------------------------------------------------------- /envs/infinisim/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/infinisim/shell.nix -------------------------------------------------------------------------------- /envs/jruby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/jruby/README.md -------------------------------------------------------------------------------- /envs/jruby/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/jruby/shell.nix -------------------------------------------------------------------------------- /envs/ladybird/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/ladybird/README.md -------------------------------------------------------------------------------- /envs/ladybird/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/ladybird/shell.nix -------------------------------------------------------------------------------- /envs/nannou/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/nannou/shell.nix -------------------------------------------------------------------------------- /envs/openwrt/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/openwrt/README.md -------------------------------------------------------------------------------- /envs/openwrt/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/openwrt/shell.nix -------------------------------------------------------------------------------- /envs/phoronix-test-suite/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/phoronix-test-suite/README.md -------------------------------------------------------------------------------- /envs/phoronix-test-suite/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/phoronix-test-suite/shell.nix -------------------------------------------------------------------------------- /envs/spec-benchmark/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/spec-benchmark/README.md -------------------------------------------------------------------------------- /envs/spec-benchmark/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/spec-benchmark/shell.nix -------------------------------------------------------------------------------- /envs/xilinx-vitis/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/xilinx-vitis/README.md -------------------------------------------------------------------------------- /envs/xilinx-vitis/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/xilinx-vitis/shell.nix -------------------------------------------------------------------------------- /envs/yocto/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/yocto/shell.nix -------------------------------------------------------------------------------- /envs/zmk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/zmk/README.md -------------------------------------------------------------------------------- /envs/zmk/shell.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/envs/zmk/shell.nix -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-environments/HEAD/flake.nix --------------------------------------------------------------------------------