nixpkgs/nixos/modules/virtualisation/container-config.nix

26 lines
586 B
Nix
Raw Normal View History

2014-04-01 13:42:18 +00:00
{ config, pkgs, lib, ... }:
with lib;
{
2014-04-01 13:42:18 +00:00
config = mkIf config.boot.isContainer {
# Disable some features that are not useful in a container.
2014-04-15 23:44:43 +00:00
sound.enable = mkDefault false;
services.udisks2.enable = mkDefault false;
2014-04-15 23:44:43 +00:00
networking.useHostResolvConf = true;
# Containers should be light-weight, so start sshd on demand.
services.openssh.startWhenNeeded = mkDefault true;
# Shut up warnings about not having a boot loader.
system.build.installBootLoader = "${pkgs.coreutils}/bin/true";
2014-08-12 00:51:20 +00:00
systemd.services.systemd-remount-fs.enable = false;
};
}