forked from pub-solar/os
teutat3s
134fcb9a0d
Co-authored-by: Anton <fetsorn@gmail.com> Co-authored-by: Chris Montgomery <chris@cdom.io> Co-authored-by: Timothy DeHerrera <tim.deh@pm.me> Co-authored-by: Parthiv Seetharaman <pachum99@myrdd.info> Co-authored-by: bors[bot] <26634292+bors[bot]@users.noreply.github.com> Co-authored-by: GTrunSec <gtrunsec@hardenedlinux.org> Co-authored-by: Pacman99 <pachum99@myrdd.info> Co-authored-by: Joel <joel@joel.tokyo> Co-authored-by: Trevor Riles <trevor@trevorriles.com> Reviewed-on: https://git.b12f.io/pub-solar/os/pulls/42 Co-authored-by: teutat3s <teutates@mailbox.org> Co-committed-by: teutat3s <teutates@mailbox.org>
42 lines
1.2 KiB
Markdown
42 lines
1.2 KiB
Markdown
# Quick Start
|
|
The only dependency is nix, so make sure you have it [installed][install-nix].
|
|
|
|
## Get the Template
|
|
Here is a snippet that will get you the template without the git history:
|
|
```sh
|
|
nix-shell -p cachix --run "cachix use nrdxp"
|
|
|
|
nix-shell https://github.com/divnix/devos/archive/main.tar.gz -A shell \
|
|
--run "bud get main"
|
|
|
|
cd devos
|
|
|
|
nix-shell
|
|
|
|
git init
|
|
git add .
|
|
git commit -m init
|
|
```
|
|
|
|
This will place you in a new folder named `devos` with git initialized, and a
|
|
nix-shell that provides all the dependencies, including the unstable nix
|
|
version required.
|
|
|
|
In addition, the [binary cache](../integrations/cachix.md) is added for faster deployment.
|
|
|
|
> ##### _Notes:_
|
|
> - Flakes ignore files that have not been added to git, so be sure to stage new
|
|
> files before building the system.
|
|
> - You can choose to simply clone the repo with git if you want to follow
|
|
> upstream changes.
|
|
> - If the `nix-shell -p cachix --run "cachix use nrdxp"` line doesn't work
|
|
> you can try with sudo: `sudo nix-shell -p cachix --run "cachix use nrdxp"`
|
|
|
|
## Next Steps:
|
|
- [Make installable ISO](./iso.md)
|
|
- [Bootstrap Host](./bootstrapping.md)
|
|
- [Already on NixOS](./from-nixos.md)
|
|
|
|
|
|
[install-nix]: https://nixos.org/manual/nix/stable/#sect-multi-user-installation
|