2025-01-06 01:05:43 +00:00
|
|
|
# Building
|
|
|
|
## Flake (Nix)
|
|
|
|
```
|
|
|
|
git clone https://git.mlaga97.space/mlaga97/persistent-live-docker-flake
|
|
|
|
cd persistent-live-docker-flake
|
|
|
|
|
|
|
|
nix build -L
|
|
|
|
```
|
|
|
|
|
|
|
|
## Without Flake (Nix)
|
|
|
|
```
|
|
|
|
git clone https://git.mlaga97.space/mlaga97/persistent-live-docker-flake
|
|
|
|
cd persistent-live-docker-flake
|
|
|
|
|
|
|
|
nixos-generate -f iso -c configuration.nix
|
|
|
|
```
|
2025-01-06 01:31:18 +00:00
|
|
|
|
|
|
|
## Without Flake (Docker)
|
|
|
|
```
|
|
|
|
git clone https://git.mlaga97.space/mlaga97/persistent-live-docker-flake
|
|
|
|
|
|
|
|
docker run -v $(pwd)/persistent-live-docker-flake:/persistent-live-docker-flake -it nixos/nix nix-shell -p nixos-generators
|
|
|
|
cd /persistent-live-docker-flake
|
|
|
|
nixos-generate -f iso -c configuration.nix
|
|
|
|
```
|