python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / nixos / modules / profiles / docker-container.nix
blob183645de36fbe5cb3e5a671d2b864b9505487171
1 { config, lib, pkgs, ... }:
3 with lib;
5 let inherit (pkgs) writeScript; in
7 let
8  pkgs2storeContents = l : map (x: { object = x; symlink = "none"; }) l;
10 in {
11   # Docker image config.
12   imports = [
13     ../installer/cd-dvd/channel.nix
14     ./minimal.nix
15     ./clone-config.nix
16   ];
18   # Create the tarball
19   system.build.tarball = pkgs.callPackage ../../lib/make-system-tarball.nix {
20     contents = [
21       {
22         source = "${config.system.build.toplevel}/.";
23         target = "./";
24       }
25     ];
26     extraArgs = "--owner=0";
28     # Add init script to image
29     storeContents = pkgs2storeContents [
30       config.system.build.toplevel
31       pkgs.stdenv
32     ];
34     # Some container managers like lxc need these
35     extraCommands =
36       let script = writeScript "extra-commands.sh" ''
37             rm etc
38             mkdir -p proc sys dev etc
39           '';
40       in script;
41   };
43   boot.isContainer = true;
44   boot.postBootCommands =
45     ''
46       # After booting, register the contents of the Nix store in the Nix
47       # database.
48       if [ -f /nix-path-registration ]; then
49         ${config.nix.package.out}/bin/nix-store --load-db < /nix-path-registration &&
50         rm /nix-path-registration
51       fi
53       # nixos-rebuild also requires a "system" profile
54       ${config.nix.package.out}/bin/nix-env -p /nix/var/nix/profiles/system --set /run/current-system
55     '';
57   # Install new init script
58   system.activationScripts.installInitScript = ''
59     ln -fs $systemConfig/init /init
60   '';