fix typo and add section

This commit is contained in:
Aaron Honeycutt 2025-07-31 18:20:10 -06:00
parent 3694c5422d
commit a561b227d9

View file

@ -40,7 +40,9 @@ git add flake.nix
nix build .#nixosConfigurations.exampleIso.config.system.build.images.iso
```
I started my own [nixpkgs repository](https://gitlab.com/ahoneybun-nix/nixos-live-disk) recently for building images for my Pi 4, Pi 5 and x86_64 minimal CLI versions. We can build x86_64 and aarch64-linux in the same flake:
I started my own [nixos live disk repository](https://gitlab.com/ahoneybun-nix/nixos-live-disk) recently for building images for my Pi 4, Pi 5 and x86_64 minimal CLI versions.
If we want to build an image for aarch64-linux with the graphical installer for GNOME with the latest kernel, hostname set and helix.
```nix,linenos
{
@ -58,7 +60,7 @@ I started my own [nixpkgs repository](https://gitlab.com/ahoneybun-nix/nixos-liv
environment.systemPackages = with pkgs; [ helix ];
networking.hostName = "drack";
services.openssh.enable = true;
system.stateVersion = "24.11";
system.stateVersion = "25.05";
})
];
};