summary refs log tree commit diff
path: root/nixos/maintainers/scripts/openstack/openstack-image.nix
blob: 3255e7f3d44d6e221ef09b1c47a8f48eb045e631 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# nix-build '<nixpkgs/nixos>' -A config.system.build.openstackImage --arg configuration "{ imports = [ ./nixos/maintainers/scripts/openstack/openstack-image.nix ]; }"

{ config, lib, pkgs, ... }:

with lib;

{
  imports =
    [ ../../../modules/installer/cd-dvd/channel.nix
      ../../../modules/virtualisation/openstack-config.nix
    ];

  system.build.openstackImage = import ../../../lib/make-disk-image.nix {
    inherit lib config;
    additionalSpace = "1024M";
    pkgs = import ../../../.. { inherit (pkgs) system; }; # ensure we use the regular qemu-kvm package
    format = "qcow2";
    configFile = pkgs.writeText "configuration.nix"
      ''
        {
          imports = [ <nixpkgs/nixos/modules/virtualisation/openstack-config.nix> ];
        }
      '';
  };

}