initial commit with desktop

This commit is contained in:
Alexander Szczepanski
2021-06-09 20:52:21 +02:00
commit 646b0b4ce5
5 changed files with 299 additions and 0 deletions

View File

@ -0,0 +1,12 @@
{ config, pkgs, lib, ... }:
{
# container virtualization
virtualisation.docker.enable = true;
# hypervisor virtualization
virtualisation.libvirtd = {
enable = true;
qemuPackage = pkgs.qemu_kvm;
};
}