mirror of
https://github.com/materusPL/nixos-config
synced 2026-02-12 16:17:21 +01:00
17 lines
284 B
Nix
17 lines
284 B
Nix
|
|
{ ... }:
|
||
|
|
{
|
||
|
|
imports = [
|
||
|
|
./nspawn/arch.nix
|
||
|
|
];
|
||
|
|
|
||
|
|
virtualisation.lxc.enable = true;
|
||
|
|
virtualisation.lxc.lxcfs.enable = true;
|
||
|
|
|
||
|
|
virtualisation.waydroid.enable = true;
|
||
|
|
virtualisation.podman = {
|
||
|
|
enable = true;
|
||
|
|
dockerCompat = true;
|
||
|
|
dockerSocket.enable = true;
|
||
|
|
};
|
||
|
|
}
|