nix-community / nixops-libvirtd

NixOps libvirtd backend plugin [maintainer=@AmineChikhaoui]

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

NixOps backend for libvirtd

NixOps (formerly known as Charon) is a tool for deploying NixOS machines in a network or cloud.

Quick Start

Prepare libvirtd

In order to use the libvirtd backend, a couple of manual steps need to be taken.

Note: The libvirtd backend is currently supported only on NixOS.

Configure your host NixOS machine to enable libvirtd daemon, add your user to libvirtd group and change firewall not to filter DHCP packets.

virtualisation.libvirtd.enable = true;
users.extraUsers.myuser.extraGroups = [ "libvirtd" ];
networking.firewall.checkReversePath = false;

Next we have to make sure our user has access to create images by executing:

images=/var/lib/libvirt/images
sudo mkdir $images
sudo chgrp libvirtd $images
sudo chmod g+w $images

Create the default libvirtd storage pool for root:

sudo virsh pool-define-as default dir --target $images
sudo virsh pool-autostart default
sudo virsh pool-start default

Deploy the example machine

Create and deploy the trivial example:

nixops create -d example-libvirtd examples/trivial-virtd.nix
nixops deploy -d example-libvirtd

Your new machine doesn't do much by default, but you may connect to it by running:

nixops ssh -d example-libvirtd machine

About

NixOps libvirtd backend plugin [maintainer=@AmineChikhaoui]

License:GNU Lesser General Public License v3.0


Languages

Language:Python 67.7%Language:Nix 30.8%Language:Shell 1.5%