Skip to content

Commit 6fdc742

Browse files
committed
📝 docs Reflect changes
resolves #498
1 parent a8a3495 commit 6fdc742

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

doc/start/index.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -2,23 +2,21 @@
22

33
The only dependency is nix, so make sure you have it [installed][install-nix].
44

5-
## Get the Template
5+
## Get a Template
66

7-
If you currently don't have flakes setup, you can utilize the digga shell to
8-
pull the template:
7+
If you currently don't have flakes support, you can temporarily enable them:
98

109
```sh
11-
nix-shell "https://github.com/divnix/digga/archive/main.tar.gz" \
12-
--run "nix flake init -t github:divnix/digga"
10+
nix flake init --experimental-features 'nix-command flakes' -t github:divnix/digga
1311
```
1412

15-
If you already have flakes support, you can directly pull the template:
13+
If you already have flakes support, you can simply pull the template:
1614

1715
```sh
1816
nix flake init -t github:divnix/digga
1917
```
2018

21-
Then make sure to create the git repository:
19+
Make sure to create the git repository:
2220

2321
```sh
2422
git init
@@ -35,15 +33,17 @@ In addition, the [binary cache](../integrations/cachix.md) is added for faster d
3533

3634
> # _Notes:_
3735
>
38-
> - Flakes ignore files that have not been added to git, so be sure to stage new
36+
> - Flakes ignore files that are not tracked by git, so be sure to stage new
3937
> files before building the system.
4038
> - You can choose to simply clone the repo with git if you want to follow
4139
> upstream changes.
42-
> - If the `nix-shell -p cachix --run "cachix use nrdxp"` line doesn't work you
43-
> can try with sudo: `sudo nix-shell -p cachix --run "cachix use nrdxp"`
40+
> - There are other templates. The default is `devos`, which is opinionated and
41+
> implements the most features. Other templates can be found with
42+
> `nix flake show` or by viewing Digga's flake.nix. Other templates can be
43+
> used with `nix flake init -t github:divnix/digga#<templateName>`
4444
4545
## Next Steps
4646

47-
- [Make installable ISO](./iso.md)
47+
- [Make an installable ISO](./iso.md)
4848

4949
[install-nix]: https://nixos.org/manual/nix/stable/#sect-multi-user-installation

0 commit comments

Comments
 (0)