├── .github └── workflows │ └── pr.yml ├── LICENSE ├── README.md ├── basics ├── arithmetic.nix ├── booleans.nix ├── comments.nix ├── floating_point_number.nix ├── integers.nix └── strings.nix ├── docs └── CONTRIBUTING.md ├── flake.lock ├── flake.nix └── scripts ├── README.md ├── ci └── test.sh ├── run-all.nu └── start-nix-2-4-shell.sh /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/README.md -------------------------------------------------------------------------------- /basics/arithmetic.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/basics/arithmetic.nix -------------------------------------------------------------------------------- /basics/booleans.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/basics/booleans.nix -------------------------------------------------------------------------------- /basics/comments.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/basics/comments.nix -------------------------------------------------------------------------------- /basics/floating_point_number.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/basics/floating_point_number.nix -------------------------------------------------------------------------------- /basics/integers.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/basics/integers.nix -------------------------------------------------------------------------------- /basics/strings.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/basics/strings.nix -------------------------------------------------------------------------------- /docs/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/docs/CONTRIBUTING.md -------------------------------------------------------------------------------- /flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/flake.lock -------------------------------------------------------------------------------- /flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/flake.nix -------------------------------------------------------------------------------- /scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/scripts/README.md -------------------------------------------------------------------------------- /scripts/ci/test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/scripts/ci/test.sh -------------------------------------------------------------------------------- /scripts/run-all.nu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/scripts/run-all.nu -------------------------------------------------------------------------------- /scripts/start-nix-2-4-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/nix-community/nix-snippets/HEAD/scripts/start-nix-2-4-shell.sh --------------------------------------------------------------------------------