nixos-generators
nixos-generators copied to clipboard
Collection of image builders [maintainer=@Lassulus]
Automated changes by the [update-flake-lock](https://github.com/DeterminateSystems/update-flake-lock) GitHub Action. ``` Flake lock file updates: • Updated input 'nixlib': 'github:nix-community/nixpkgs.lib/1418bc28a52126761c02dd3d89b2d8ca0f521181?narHash=sha256-tmpqTSWVRJVhpvfSN9KXBvKEXplrwKnSZNAoNPf/S/s%3D' (2025-01-12) → 'github:nix-community/nixpkgs.lib/e171c13eb1bfa148a2e5ed435768d5e89e235d0f?narHash=sha256-ObaNaUu4Ey117f3UWMQL7CN/QBEUPM9MiwGSG9piCL0%3D' (2025-11-02) • Updated input 'nixpkgs': 'github:NixOS/nixpkgs/2f9e2f85cb14a46410a1399aa9ea7ecf433e422e?narHash=sha256-FWlPMUzp0lkQBdhKlPqtQdqmp%2B/C%2B1MBiEytaYfrCTY%3D' (2025-01-12) → 'github:NixOS/nixpkgs/a7fc11be66bdfb5cdde611ee5ce381c183da8386?narHash=sha256-QoJjGd4NstnyOG4mm4KXF%2BweBzA2AH/7gn1Pmpfcb0A%3D' (2025-10-31)...
Changing nothing else but the version from 25.05 24.11 I successfully build every time with 24.11 and fail every time with 25.05. ``` nixos-disk-image> Disk image size: 11534336000 bytes nixos-disk-image>...
tl;dr: replace with upstreamed implementation, drafted because manual links won't work before 25.05 is stable. I deliberately delete the code for the last commit so that people who just run...
This cost me 2 hours to debug, so maybe the following will help others save some time: In VMware I created a new VM from scratch and added the .vmdk...
Hi , I encountered issue where I'm cross compiling for aarch64 to create a bootable USB drive. However, on target (Lenovo x13s) when booting I endup failing mounting the rootfs....
I have a working build using the "Using in a Flake" section of the README. I can run `nix build .#/installer-iso` and it writes an ISO file out in `result`....
Hello there! I want to be able to perform a complete NixOS installation from my own machine config. I was able to generate a live CD installer (following the `README.md`...
The `wantedBy` for the sshd service is unnecessary as the upstream unit is already `wantedBy` the `multi-user.target`. https://github.com/nix-community/nixos-generators/blob/051d1b2dda3b2e81b38d82e2b691e5c2f4d335f4/formats/install-iso.nix#L12
Trying to create an lxc image with a flake.nix ``` nix { description = "Flake to create vs-code-server-container image"; inputs = { nixpkgs.url = "github:nixos/nixpkgs"; nixos-generators = { url =...