Creating a NixOS live CD: Difference between revisions
mNo edit summary |
Starfish2228 (talk | contribs) m →Building: clean up typos |
||
| Line 29: | Line 29: | ||
</syntaxhighlight> | </syntaxhighlight> | ||
Alternatively, use Nix [[Flakes]] to generate a ISO installation image, using the <code>23.11-beta</code> branch as nixpkgs source: | |||
{{file|flake.nix|nix|<nowiki> | {{file|flake.nix|nix|<nowiki> | ||
{ | { | ||
description = "Minimal NixOS installation media"; | description = "Minimal NixOS installation media"; | ||
inputs.nixos.url = "nixpkgs/ | inputs.nixos.url = "github:NixOS/nixpkgs/nixos-24.05"; | ||
outputs = { self, nixos }: { | outputs = { self, nixos }: { | ||
nixosConfigurations = { | nixosConfigurations = { | ||