framework-2024-04-12-10-25-52

This commit is contained in:
Alexander Szczepanski
2024-04-12 10:25:52 +02:00
parent adaa83a3f2
commit 8df4de7f06
37 changed files with 83 additions and 33 deletions

12
configs/virtualbox.nix Executable file
View File

@ -0,0 +1,12 @@
{ config, pkgs, lib, ... }:
{
nixpkgs.config.allowUnfree = true;
virtualisation = {
virtualbox.host = {
enable = true;
enableExtensionPack = true;
};
};
}