summary refs log tree commit diff
path: root/pkgs/applications/networking/cluster/nixops/shell.nix
blob: 0139cb2c8125795ed29aedd09dd3a8d71b9aa76d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ pkgs ? import <nixpkgs> { } }:

pkgs.mkShell {
  packages = [
    pkgs.poetry2nix.cli
    pkgs.pkg-config
    pkgs.libvirt
    pkgs.poetry
  ];
}