Skip to content

Commit 8f378bf

Browse files
committed
Update Nix docs
1 parent cd257e1 commit 8f378bf

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

docs/NIX.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,24 @@
99
## Project Structure
1010

1111
The project uses:
12+
1213
- Nix Flakes for reproducible builds and development environments
1314
- `stacklock2nix` for deriving Nix packages from stack.yaml.lock
1415
- `devenv` for creating consistent development environments
1516

1617
### Flake.nix
1718

1819
The flake.nix file has the following inputs:
20+
1921
- `nixpkgs`: Standard Nix packages repository
2022
- `stacklock2nix`: A tool for generating Nix packages from stack.yaml.lock files
2123

2224
The flake outputs:
25+
2326
- `packages.default`: The Hapistrano package for each supported system
2427
- `overlays.default`: An overlay for integrating Hapistrano into other Nix
2528
systems
29+
- `templates.default`: A template showing how to install Hapistrano using devenv
2630

2731
## Development Environments
2832

flake.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
hapistrano = self.packages.${prev.system}.default;
5252
};
5353
templates.default = {
54-
description = "Install Hapistrano via devenv";
54+
description = "Install Hapistrano using devenv";
5555
path = ./templates/default;
5656
};
5757
};

0 commit comments

Comments
 (0)