19 lines
359 B
Nix
Raw Normal View History

2023-11-04 02:28:27 +01:00
{ lib, config, ... }:
let cfg = config.hostcfg.make.virt;
in {
config = lib.mkIf cfg {
virtualisation = {
# libvirtd.enable = true;
# waydroid.enable = true;
# lxd.enable = true;
docker = {
enable = true;
rootless = {
enable = true;
setSocketVariable = true;
};
};
};
};
}