1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/nixos/modules/virtualisation/container-config.nix

26 lines
586 B
Nix
Raw Normal View History

2014-04-01 14:42:18 +01:00
{ config, pkgs, lib, ... }:
with lib;
{
2014-04-01 14:42:18 +01:00
config = mkIf config.boot.isContainer {
# Disable some features that are not useful in a container.
2014-04-16 00:44:43 +01:00
sound.enable = mkDefault false;
services.udisks2.enable = mkDefault false;
2014-04-16 00:44:43 +01: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 01:51:20 +01:00
systemd.services.systemd-remount-fs.enable = false;
};
}