2014-04-01 17:42:18 +04:00
|
|
|
{ config, pkgs, lib, ... }:
|
|
|
|
|
|
|
|
with lib;
|
2014-03-17 17:04:39 +04:00
|
|
|
|
|
|
|
{
|
|
|
|
|
2014-04-01 17:42:18 +04:00
|
|
|
config = mkIf config.boot.isContainer {
|
2014-03-17 17:04:39 +04:00
|
|
|
|
2014-04-19 16:41:21 +04:00
|
|
|
# Disable some features that are not useful in a container.
|
2014-04-16 03:44:43 +04:00
|
|
|
sound.enable = mkDefault false;
|
2014-04-19 16:41:21 +04:00
|
|
|
services.udisks2.enable = mkDefault false;
|
2015-04-19 23:40:07 +03:00
|
|
|
powerManagement.enable = mkDefault false;
|
2014-04-16 03:44:43 +04:00
|
|
|
|
2014-04-18 18:40:27 +04:00
|
|
|
networking.useHostResolvConf = true;
|
|
|
|
|
2014-04-22 18:07:53 +04:00
|
|
|
# Containers should be light-weight, so start sshd on demand.
|
|
|
|
services.openssh.startWhenNeeded = mkDefault true;
|
|
|
|
|
2014-04-18 19:00:11 +04:00
|
|
|
# Shut up warnings about not having a boot loader.
|
|
|
|
system.build.installBootLoader = "${pkgs.coreutils}/bin/true";
|
|
|
|
|
2016-01-18 15:57:27 +03:00
|
|
|
# Not supported in systemd-nspawn containers.
|
|
|
|
security.audit.enable = false;
|
|
|
|
|
2014-03-17 17:04:39 +04:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|