infrastructure/nixos/common/generic-lxc.nix

10 lines
322 B
Nix
Raw Normal View History

2021-10-13 18:17:45 +02:00
{ ... }: {
# See also: https://blog.xirion.net/posts/nixos-proxmox-lxc/
# Supress systemd services that don't work (correctly) on LXC
2021-10-25 12:50:04 +02:00
systemd.suppressedSystemUnits = [ "dev-mqueue.mount" "sys-kernel-debug.mount" "sys-fs-fuse-connections.mount" ];
2021-10-13 18:17:45 +02:00
# Enable SSH daemon support.
services.openssh.enable = true;
}