2022-05-19 15:03:13 +02:00
|
|
|
{ modulesPath, ... }: {
|
|
|
|
imports = [ "${toString modulesPath}/virtualisation/lxc-container.nix" ];
|
|
|
|
services.sshd.enable = true;
|
|
|
|
systemd.suppressedSystemUnits = [
|
|
|
|
"dev-mqueue.mount"
|
|
|
|
"sys-kernel-debug.mount"
|
|
|
|
"sys-fs-fuse-connections.mount"
|
|
|
|
];
|
|
|
|
boot.isContainer = true;
|
|
|
|
|
2022-05-19 17:47:41 +02:00
|
|
|
fileSystems."/run/keys" = { fsType = "tmpfs"; };
|
|
|
|
|
2022-05-19 15:03:13 +02:00
|
|
|
}
|