summary refs log tree commit diff
path: root/nixos/modules/virtualisation
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2014-03-18 18:18:35 +0100
committerEelco Dolstra <eelco.dolstra@logicblox.com>2014-03-24 12:19:27 +0100
commit2ace7edb81509189a15a0b8e8d0ee1886be9e725 (patch)
treee18fd3b9b085e9c577901195a75ecc697cb96526 /nixos/modules/virtualisation
parent7ee31c7f94d121f5e57779c0c1478aee30d80cb1 (diff)
downloadnixlib-2ace7edb81509189a15a0b8e8d0ee1886be9e725.tar
nixlib-2ace7edb81509189a15a0b8e8d0ee1886be9e725.tar.gz
nixlib-2ace7edb81509189a15a0b8e8d0ee1886be9e725.tar.bz2
nixlib-2ace7edb81509189a15a0b8e8d0ee1886be9e725.tar.lz
nixlib-2ace7edb81509189a15a0b8e8d0ee1886be9e725.tar.xz
nixlib-2ace7edb81509189a15a0b8e8d0ee1886be9e725.tar.zst
nixlib-2ace7edb81509189a15a0b8e8d0ee1886be9e725.zip
Rename systemd.containers -> containers
That NixOS containers use systemd-nspawn is just an implementation
detail (which we could change in the future).
Diffstat (limited to 'nixos/modules/virtualisation')
-rw-r--r--nixos/modules/virtualisation/containers.nix10
1 files changed, 5 insertions, 5 deletions
diff --git a/nixos/modules/virtualisation/containers.nix b/nixos/modules/virtualisation/containers.nix
index b8388e7f206d..cdd9e729dc16 100644
--- a/nixos/modules/virtualisation/containers.nix
+++ b/nixos/modules/virtualisation/containers.nix
@@ -80,7 +80,7 @@ in
       '';
     };
 
-    systemd.containers = mkOption {
+    containers = mkOption {
       type = types.attrsOf (types.submodule (
         { config, options, name, ... }:
         {
@@ -160,7 +160,7 @@ in
                         imports = [ ./container-login.nix ];
                       };
                     in [ extraConfig config.config ];
-                  prefix = [ "systemd" "containers" name ];
+                  prefix = [ "containers" name ];
                 }).config.system.build.toplevel;
               })
             ];
@@ -291,15 +291,15 @@ in
           + "echo ${cfg.path}/bin/switch-to-configuration test "
           + "| ${pkgs.socat}/bin/socat unix:${cfg.root}/var/lib/root-shell.socket -'";
 
-      }) config.systemd.containers;
+      }) config.containers;
 
     # Generate /etc/hosts entries for the containers.
     networking.extraHosts = concatStrings (mapAttrsToList (name: cfg: optionalString (cfg.localAddress != null)
       ''
         ${cfg.localAddress} ${name}.containers
-      '') config.systemd.containers);
+      '') config.containers);
 
-    environment.systemPackages = optional (config.systemd.containers != {}) nixos-container-shell;
+    environment.systemPackages = optional (config.containers != {}) nixos-container-shell;
 
   };
 }