1
0
Fork 0
Simple application VMs (hypervisor-based sandbox) based on Nix package manager.
 
 
 
Go to file
dump_stack() 680aff06f7
Build appvm from ../default.nix
2020-01-22 01:18:25 +00:00
.github GitHub Actions: Do not generate ISO 2020-01-22 00:59:46 +00:00
docs Init docs 2020-01-05 05:57:55 +00:00
dot-desktop-fuse Handle case when there's no actions in .desktop file 2020-01-09 23:07:37 +00:00
os Build appvm from ../default.nix 2020-01-22 01:18:25 +00:00
patches virt-viewer: do not grab keyboard/mouse 2020-01-22 00:50:54 +00:00
screenshots Add screenshot 2018-07-05 07:46:31 +00:00
.envrc [feat] added environment files 2019-12-29 18:27:02 +03:00
.gitignore Update .gitignore 2020-01-05 06:12:18 +00:00
LICENSE Add LICENSE 2018-06-30 22:15:11 +00:00
Makefile Support remove run with `nix run` 2020-01-08 20:52:29 +00:00
README.md Add Documentation Status 2020-01-05 06:03:59 +00:00
appvm.go Copy templates at start of tool not vm 2020-01-09 23:31:12 +00:00
base.nix.go User host user id 2020-01-07 20:01:52 +00:00
builtin.go Update builtin chromium appvm description 2020-01-02 17:52:22 +00:00
default.nix Cleanup 2020-01-22 01:13:26 +00:00
deps.nix Add missed deps 2020-01-08 11:16:14 +00:00
generate.go Avoid of changing current work directory 2020-01-09 23:13:48 +00:00
go.mod go modules 2019-12-30 15:55:00 +00:00
go.sum go modules 2019-12-30 15:55:00 +00:00
local.nix.template.go Do no enable anything in default local.nix 2020-01-05 08:55:36 +00:00
shell.nix [feat] added environment files 2019-12-29 18:27:02 +03:00
xml.go Implements stateless VMs 2020-01-03 22:56:27 +00:00

README.md

Documentation Status Donate Donate

Nix application VMs: security through virtualization

Simple application VMs (hypervisor-based sandbox) based on Nix package manager.

Uses one read-only /nix directory for all appvms. So creating a new appvm (but not first) is just about one minute.

appvm screenshot

Dependencies

$ sudo apt install golang virt-manager curl git
$ sudo usermod -a -G libvirt $USER

$ echo 'export GOPATH=$HOME/go' >> ~/.bash_profile
$ echo 'export PATH=$PATH:$GOPATH/bin' >> ~/.bash_profile
$ echo 'source ~/.bash_profile' >> ~/.bashrc
$ source ~/.bash_profile

You need to relogin if you install virt-manager (libvirt) first time.

Install Nix package manager

$ sudo mkdir -m 0755 /nix && sudo chown $USER /nix
$ curl https://nixos.org/nix/install | sh
$ . ~/.nix-profile/etc/profile.d/nix.sh

Libvirt from user (required if you need access to shared files)

$ echo user = "\"$USER\"" | sudo tee -a /etc/libvirt/qemu.conf
$ sudo systemctl restart libvirtd

Install appvm tool

$ go get code.dumpstack.io/tools/appvm

Update appvm tool

$ go get -u code.dumpstack.io/tools/appvm

Search for applications

$ appvm search chromium

Generate new application

$ nix-channel --list
nix https://nixos.org/channels/nixos-unstable
$ appvm generate nix.firefox

Run application

$ appvm start chromium
$ # ... long wait for first time, because we need to collect a lot of packages

Synchronize remote repos for applications

$ appvm sync

You can customize local settings in ~/.config/appvm/nix/local.nix.

Default hotkey to release cursor: ctrl+alt.

Shared directory

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

Close VM

$ appvm stop chromium

Automatic ballooning

Add this command:

$ appvm autoballoon

to crontab like that:

$ crontab -l
* * * * * /home/user/dev/go/bin/appvm autoballoon