├── first_steps_with_nix.md ├── first_steps_with_nix_v2.md ├── hello ├── flake.lock ├── flake.nix └── nix.toml ├── my-hello-toml ├── flake.lock └── nix.toml ├── my-hello ├── flake.lock └── flake.nix └── nixpkgs-ng ├── flake.lock └── flake.nix /first_steps_with_nix.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nix-ux/HEAD/first_steps_with_nix.md -------------------------------------------------------------------------------- /first_steps_with_nix_v2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nix-ux/HEAD/first_steps_with_nix_v2.md -------------------------------------------------------------------------------- /hello/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nix-ux/HEAD/hello/flake.lock -------------------------------------------------------------------------------- /hello/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nix-ux/HEAD/hello/flake.nix -------------------------------------------------------------------------------- /hello/nix.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nix-ux/HEAD/hello/nix.toml -------------------------------------------------------------------------------- /my-hello-toml/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nix-ux/HEAD/my-hello-toml/flake.lock -------------------------------------------------------------------------------- /my-hello-toml/nix.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nix-ux/HEAD/my-hello-toml/nix.toml -------------------------------------------------------------------------------- /my-hello/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nix-ux/HEAD/my-hello/flake.lock -------------------------------------------------------------------------------- /my-hello/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nix-ux/HEAD/my-hello/flake.nix -------------------------------------------------------------------------------- /nixpkgs-ng/flake.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nix-ux/HEAD/nixpkgs-ng/flake.lock -------------------------------------------------------------------------------- /nixpkgs-ng/flake.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tweag/nix-ux/HEAD/nixpkgs-ng/flake.nix --------------------------------------------------------------------------------