diff --git a/nix/home-manager/configuration/graphical-removable.nix b/nix/home-manager/configuration/graphical-removable.nix index 1cbf3ac..2c11681 100644 --- a/nix/home-manager/configuration/graphical-removable.nix +++ b/nix/home-manager/configuration/graphical-removable.nix @@ -26,6 +26,8 @@ in { gnutls = true; }; + android_sdk.accept_license = true; + packageOverrides = pkgs: with pkgs; { myPython36 = python36Full.withPackages (ps: with ps; [ pylint pep8 yapf flake8 @@ -145,5 +147,8 @@ in { myPython36 busyboxStatic + + # Virtualization + virtmanager ]); } diff --git a/nix/os/devices/steveej-rmvbl-sduusb3128g/versions.nix b/nix/os/devices/steveej-rmvbl-sduusb3128g/versions.nix new file mode 100644 index 0000000..52734ca --- /dev/null +++ b/nix/os/devices/steveej-rmvbl-sduusb3128g/versions.nix @@ -0,0 +1,10 @@ +{ + channelsNixosStable = { + ref = "nixos-18.09"; + rev = "7e88992a8c7b2de0bcb89182d8686b27bd93e46a"; + }; + channelsNixosUnstable = { + ref = "nixos-unstable"; + rev = "44b02b52ea6a49674f124f50009299f192ed78bb"; + }; +} diff --git a/nix/os/profiles/removable-medium/system.nix b/nix/os/profiles/removable-medium/system.nix index 92fc62c..fccfc9e 100644 --- a/nix/os/profiles/removable-medium/system.nix +++ b/nix/os/profiles/removable-medium/system.nix @@ -12,7 +12,7 @@ in { services.qemuGuest.enable = true; virtualisation = { - libvirtd.enable = false; + libvirtd.enable = true; virtualbox.host.enable = false; docker.enable = true; };