Migrate to nix-fast-build and update inputs

This commit is contained in:
Fabian Hauser 2025-03-02 22:27:25 +02:00
parent f86077a635
commit f898ce3eae
8 changed files with 61 additions and 59 deletions

View file

@ -0,0 +1,18 @@
{ ... }:
{
virtualisation = {
# TODO: This should probably be somewhere else.
docker = {
enable = true;
enableOnBoot = false;
};
libvirtd.enable = true;
spiceUSBRedirection.enable = true;
};
boot.extraModprobeConfig = ''
options kvm_intel nested=1
options kvm_intel emulate_invalid_guest_state=0
options kvm ignore_msrs=1
'';
}