Add new file

This commit is contained in:
Aaron Honeycutt 2022-06-02 18:54:54 +00:00
parent 02686646fe
commit 6732eebab2

14
programs.nix Normal file
View file

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