From ea5931e05c9563f9afc1dc97f1fb038e90654a25 Mon Sep 17 00:00:00 2001 From: Gabriel Volpe Date: Thu, 14 Sep 2023 20:26:46 +0200 Subject: [PATCH] remove virtualbox support --- home/home.nix | 7 +------ system/configuration.nix | 7 +------ 2 files changed, 2 insertions(+), 12 deletions(-) diff --git a/home/home.nix b/home/home.nix index 9b49d198..7b86ba0f 100644 --- a/home/home.nix +++ b/home/home.nix @@ -68,11 +68,6 @@ let haskellPackages.nix-tree # visualize nix dependencies ]; - vboxPkgs = with pkgs.linuxPackages; [ - virtualbox - virtualboxGuestAdditions - ]; - gnomePkgs = with pkgs.gnome; [ eog # image viewer evince # pdf reader @@ -105,7 +100,7 @@ in inherit username homeDirectory; stateVersion = "21.03"; - packages = defaultPkgs ++ gnomePkgs ++ vboxPkgs; + packages = defaultPkgs ++ gnomePkgs; sessionVariables = { DISPLAY = ":0"; diff --git a/system/configuration.nix b/system/configuration.nix index c46a616b..2fe2bb7f 100644 --- a/system/configuration.nix +++ b/system/configuration.nix @@ -74,7 +74,7 @@ in # Or disable the firewall altogether. networking.firewall.enable = false; - # Enable Docker & VirtualBox support. + # Enable Docker support virtualisation = { docker = { enable = true; @@ -86,11 +86,6 @@ in bip = "169.254.0.1/16"; }; }; - - virtualbox.host = { - enable = true; - enableExtensionPack = true; - }; }; users.extraGroups.vboxusers.members = [ "gvolpe" ];