89 lines
2.4 KiB
Nix
89 lines
2.4 KiB
Nix
{ config, lib, pkgs, ... }:
|
|
with config.deviceSpecific; {
|
|
config = lib.mkIf enableVirtualisation {
|
|
virtualisation.docker = {
|
|
enable = true;
|
|
daemon.settings = {
|
|
features = { buildkit = true; };
|
|
};
|
|
storageDriver = if (devInfo.fileSystem == "zfs") then
|
|
"zfs"
|
|
else if (devInfo.fileSystem == "btrfs") then
|
|
"btrfs"
|
|
else
|
|
"overlay2";
|
|
};
|
|
virtualisation.oci-containers.backend = "podman";
|
|
virtualisation.podman = {
|
|
enable = true;
|
|
extraPackages = [ pkgs.zfs ];
|
|
defaultNetwork.settings.dns_enabled = true;
|
|
};
|
|
virtualisation.containers.registries.search = [
|
|
"docker.io" "gcr.io" "quay.io"
|
|
];
|
|
virtualisation.containers.storage.settings =
|
|
lib.mkIf (devInfo.fileSystem == "zfs") {
|
|
storage = {
|
|
driver = "zfs";
|
|
graphroot = "/var/lib/containers/storage";
|
|
runroot = "/run/containers/storage";
|
|
};
|
|
};
|
|
|
|
virtualisation.libvirtd = {
|
|
enable = true;
|
|
qemu = {
|
|
ovmf.enable = true;
|
|
ovmf.packages = [ pkgs.OVMFFull.fd ];
|
|
runAsRoot = false;
|
|
};
|
|
onBoot = "ignore";
|
|
onShutdown = "shutdown";
|
|
};
|
|
|
|
home-manager.users.${config.mainuser} = {
|
|
home.file.".config/libvirt/libvirt.conf".text = ''
|
|
uri_default = "qemu:///system"
|
|
'';
|
|
home.packages = with pkgs; [
|
|
docker-compose
|
|
virt-manager
|
|
];
|
|
};
|
|
|
|
virtualisation.lxd = lib.mkIf (!isContainer) {
|
|
enable = true;
|
|
zfsSupport = devInfo.fileSystem == "zfs";
|
|
recommendedSysctlSettings = true;
|
|
};
|
|
virtualisation.lxc = lib.mkIf (!isContainer) {
|
|
enable = true;
|
|
lxcfs.enable = true;
|
|
systemConfig = ''
|
|
lxc.lxcpath = /var/lib/lxd/containers
|
|
${if devInfo.fileSystem == "zfs" then ''
|
|
lxc.bdev.zfs.root = rpool/nixos/lxd
|
|
'' else ""}
|
|
'';
|
|
defaultConfig = ''
|
|
lxc.idmap = u 0 100000 65535
|
|
lxc.idmap = g 0 100000 65535
|
|
lxc.include = ${pkgs.lxcfs}/share/lxc/config/common.conf.d/00-lxcfs.conf
|
|
'';
|
|
};
|
|
|
|
virtualisation.spiceUSBRedirection.enable = true;
|
|
|
|
networking.nat = {
|
|
enable = true;
|
|
internalInterfaces = [ "ve-+" ];
|
|
# externalInterface = "enp8s0";
|
|
};
|
|
|
|
persist.state.directories = lib.mkIf devInfo.fileSystem != "zfs" [
|
|
"/var/lib/docker"
|
|
"/var/lib/libvirt"
|
|
];
|
|
};
|
|
} |