nixos-configs/common/generic-lxc.nix

11 lines
175 B
Nix
Raw Normal View History

2021-11-13 09:13:41 +01:00
{ ... }: {
services.sshd.enable = true;
systemd.suppressedSystemUnits = [
"dev-mqueue.mount"
"sys-kernel-debug.mount"
"sys-fs-fuse-connections.mount"
];
}