about summary refs log tree commit diff
path: root/nixos/modules/system/boot
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2015-05-11 15:48:45 +0200
committerEelco Dolstra <eelco.dolstra@logicblox.com>2015-05-11 18:18:35 +0200
commitc52a98380673093037a3116025d0aa92cd46a214 (patch)
tree503ec29b4085d40ba31c37a8eb8193539be09739 /nixos/modules/system/boot
parentfe952a42a7898574a1a2f5ac4b386c6bdd713b2e (diff)
downloadnixlib-c52a98380673093037a3116025d0aa92cd46a214.tar
nixlib-c52a98380673093037a3116025d0aa92cd46a214.tar.gz
nixlib-c52a98380673093037a3116025d0aa92cd46a214.tar.bz2
nixlib-c52a98380673093037a3116025d0aa92cd46a214.tar.lz
nixlib-c52a98380673093037a3116025d0aa92cd46a214.tar.xz
nixlib-c52a98380673093037a3116025d0aa92cd46a214.tar.zst
nixlib-c52a98380673093037a3116025d0aa92cd46a214.zip
Use ConditionVirtualization to disable some services in containers
Diffstat (limited to 'nixos/modules/system/boot')
-rw-r--r--nixos/modules/system/boot/systemd.nix4
1 files changed, 4 insertions, 0 deletions
diff --git a/nixos/modules/system/boot/systemd.nix b/nixos/modules/system/boot/systemd.nix
index fdaf4dabc392..d1e97e0b87f0 100644
--- a/nixos/modules/system/boot/systemd.nix
+++ b/nixos/modules/system/boot/systemd.nix
@@ -750,6 +750,10 @@ in
     systemd.targets.local-fs.unitConfig.X-StopOnReconfiguration = true;
     systemd.targets.remote-fs.unitConfig.X-StopOnReconfiguration = true;
 
+    # Don't bother with certain units in containers.
+    systemd.services.systemd-remount-fs.unitConfig.ConditionVirtualization = "!container";
+    systemd.services.systemd-random-seed.unitConfig.ConditionVirtualization = "!container";
+
   };
 
 }