nyxi-installer/programs.nix
Aaron Honeycutt 6732eebab2 Add new file
2022-06-02 18:54:54 +00:00

14 lines
222 B
Nix

{ config, pkgs, ... }:
{
# virt-manager
virtualisation.libvirtd.enable = true;
# Packages
environment.systemPackages =
with pkgs;
[
virt-manager
];
}