nixos-generators icon indicating copy to clipboard operation
nixos-generators copied to clipboard

Collection of image builders [maintainer=@Lassulus]

Results 87 nixos-generators issues
Sort by recently updated
recently updated
newest added

It would be nice to have support for [Parallels](https://www.parallels.com/).

I'm building a fairly large image for testing in VM and run into some issues: The qcow and raw formats fail with the error below, probably because the disk size...

building with format `raw` while trying to override the image size: ```nix system.build.raw.diskSize = mkForce 4096; ``` Doesn't have any effect on the disk size.

via the `NIXOS_GENERATORS_FORMAT_SEARCH_PATH` environment variable and `--format-search-path` CLI option, as proposed in #147. Additionally, introduce the `--show-format-search-path` option, which causes `nixos-generate` to print the list of paths it will search...

nixos-generators-search-path-proposal ## Proposal Support runtime extension of the format file search path via environment variables and CLI options. ## Motivation Provide a mechanism for end users and third parties to...

It would be cool to build a VM via nixos-generators and then run it with [lima](https://github.com/lima-vm/lima) on MacOS

Hi. Generating qcow/raw not working on aarch64: cmd: ``` nix run github:nix-community/nixos-generators -- -f qcow -I nixpkgs=channel:nixos-21.11 ``` aarch64 ``` [...] copying path '/nix/store/ja4skmlpag15hgqpqd40klv9zx4vf0nw-nixos-system-nixos-21.11.337209.c254b8c915a' to 'local'... copying channel... installation finished!...

Using flake & numtide/flake-utils: ```nix (system: let pkgs = nixpkgs.legacyPackages.${system}; in { packages.rawBootstrap = inputs.nixos-generators.nixosGenerate { inherit pkgs; format = "raw-efi"; modules = [ ./systems/_common/nix.nix ]; }; }) ``` `nix...

see: https://discourse.nixos.org/t/virtualization-ova-ovf-esxi-support-extended-ova-customization/7536 When trying to provision a VM on VMware using a `.ova` image generated with nixos-generators, I get a `Unsupported hardware family 'virtualbox-2.2'.` error. ``` $ cat flake.nix {...

Basically being able to do something like this ```nix outputs = { nixdeploy, nixpkgs }: { defaultPackage = nixdeploy.format.lxc { configuration = ./configuration.nix; nixpkgs = nixpkgs; }; } ```