1
0
Fork 0
Simple application VMs (hypervisor-based sandbox) based on Nix package manager.
 
 
 
Go to file
dump_stack() db1712cc1a Add LICENSE 2018-06-30 22:15:11 +00:00
bin Keep bin directory 2018-06-30 19:37:32 +00:00
nix Add thunderbird appvm 2018-06-30 22:06:39 +00:00
qemu Shared directory 2018-06-30 20:42:11 +00:00
share Shared directory 2018-06-30 20:42:11 +00:00
.gitignore Shared directory 2018-06-30 20:42:11 +00:00
LICENSE Add LICENSE 2018-06-30 22:15:11 +00:00
README.md It looks like English too 2018-06-30 22:10:39 +00:00
appvm.sh Implements generation of monitor section 2018-06-30 21:57:09 +00:00

README.md

Nix app vms

Simple application VM's based on Nix package manager.

Designed primarily for full screen usage without guest additions.

It's a proof-of-concept, but you can still use it. Also there is a lot of strange things inside, don't afraid of :)

Install Nix package manager

$ su -c 'mkdir -m 0755 /nix && chown user /nix'
$ curl https://nixos.org/nix/install | sh

Dependencies

$ su -c 'USE="spice virtfs" emerge qemu virt-manager'

Add appvm to PATH

$ echo 'PATH=$PATH:$HOME/appvm/bin' >> ~/.bashrc

(if you clone appvm to home directory)

Generate resolution

By default uses 3840x2160. If you need to regenerate appvm/nix/monitor.nix:

$ appvm/appvm.sh generate-resolution 1920 1080 > appvm/nix/monitor.nix

Autodetection is a bash-spaghetti, so you need to check results. BTW it's just a X.org monitor section.

Create VM

$ $HOME/appvm/appvm.sh build chromium

Run application

$ appvm.chromium

Shared directory

$ ls appvm/share/chromium
foo.tar.gz
bar.tar.gz

Close VM

$ pkill.... :)

App description

$ cat nix/chromium.nix
{pkgs, ...}:
{
  imports = [
    <nixpkgs/nixos/modules/virtualisation/qemu-vm.nix>
    <nix/base.nix>
  ];

  environment.systemPackages = [ pkgs.chromium ];
  services.xserver.displayManager.sessionCommands = "while [ 1 ]; do ${pkgs.chromium}/bin/chromium; done &";
}

For create new app you should add package name (search at https://nixos.org/nixos/packages.html) and path to binary (typically same as package name).