Hi, On Sat, Oct 11, 2014 at 8:20 AM, Joseph Joe <[email protected]> wrote: > I now would like to create an image file from the configuration. > > I issued the command: > $ export NIX_PATH=$NIXREPOS
check both variables $ echo $NIX_PATH /nix/var/nix/profiles/per-user/root/channels/nixos You could also set it to your working directory of nixpkgs. > But, the command: > $ nix-build -A iso_graphical.x86_64-linux $NIXREPOS/nixos/release.nix Do build an ISO, you could use $ nix-build "<nixpkgs/nixos/release.nix>" -A iso_graphical.x86_64-linux "<nixpkgs>" will be substituted by the path of nixpkgs by looking up inside $NIX_PATH. -- Regards, David _______________________________________________ nix-dev mailing list [email protected] http://lists.science.uu.nl/mailman/listinfo/nix-dev
