https://github.com/hellodword/learn-flake-compat
https://github.com/hellodword/learn-flake-compat
Last synced: 10 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/hellodword/learn-flake-compat
- Owner: hellodword
- Created: 2024-05-22T14:39:57.000Z (about 2 years ago)
- Default Branch: master
- Last Pushed: 2024-05-23T05:28:31.000Z (about 2 years ago)
- Last Synced: 2025-09-01T06:50:12.344Z (10 months ago)
- Language: Nix
- Size: 1.95 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
```sh
# devShells..default
nix-shell
nix develop --extra-experimental-features nix-command --extra-experimental-features flakes
# devShells..dev
nix develop --extra-experimental-features nix-command --extra-experimental-features flakes .#dev
# packages..default
nix shell --extra-experimental-features nix-command --extra-experimental-features flakes
# packages..dev
nix shell --extra-experimental-features nix-command --extra-experimental-features flakes .#dev
# apps..default
# packages..default
echo hello | nix run --extra-experimental-features nix-command --extra-experimental-features flakes
# apps..dev
# packages..dev
echo hello | nix run --extra-experimental-features nix-command --extra-experimental-features flakes .#dev
# packages..default
nix-build
nix build --extra-experimental-features nix-command --extra-experimental-features flakes
# packages..dev
nix build --extra-experimental-features nix-command --extra-experimental-features flakes .#dev
```