framework-2024-09-17-18-14-56

This commit is contained in:
Alexander Szczepanski
2024-09-17 18:14:56 +02:00
parent 95eaa7840f
commit 84cf4f9393
9 changed files with 83 additions and 73 deletions

35
configs/virtualisation.nix Executable file
View File

@ -0,0 +1,35 @@
{ pkgs, ... }:
{
users.extraGroups.vboxusers.members = [ "alex" ];
# "libvirtd"
# "qemu-libvirtd"
# "kvm"
virtualisation = {
virtualbox.host ={
enable = true;
enableExtensionPack = true;
};
# libvirtd = {
# enable = true;
# qemu = {
# package = pkgs.qemu_kvm;
# swtpm.enable = true;
# ovmf = {
# enable = true;
# packages = [
# (pkgs.OVMF.override {
# secureBoot = true;
# tpmSupport = true;
# }).fd
# ];
# };
# };
# };
# spiceUSBRedirection.enable = true;
};
# environment.systemPackages = with pkgs; [ proot virtiofsd ];
}