Skip to content

Commit

Permalink
remove virtualbox support
Browse files Browse the repository at this point in the history
  • Loading branch information
gvolpe committed Sep 14, 2023
1 parent 999dec7 commit ea5931e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 12 deletions.
7 changes: 1 addition & 6 deletions home/home.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -105,7 +100,7 @@ in
inherit username homeDirectory;
stateVersion = "21.03";

packages = defaultPkgs ++ gnomePkgs ++ vboxPkgs;
packages = defaultPkgs ++ gnomePkgs;

sessionVariables = {
DISPLAY = ":0";
Expand Down
7 changes: 1 addition & 6 deletions system/configuration.nix
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand All @@ -86,11 +86,6 @@ in
bip = "169.254.0.1/16";
};
};

virtualbox.host = {
enable = true;
enableExtensionPack = true;
};
};

users.extraGroups.vboxusers.members = [ "gvolpe" ];
Expand Down

0 comments on commit ea5931e

Please sign in to comment.