add: add work nix file for work packages

This commit is contained in:
Aaron Honeycutt 2024-01-30 13:08:32 -07:00
parent 427bf652ef
commit 8bd8fd2344

22
work.nix Normal file
View file

@ -0,0 +1,22 @@
{ config, pkgs, ... }:
{
# virt-manager
virtualisation.libvirtd.enable = true;
# Packages
environment.systemPackages = with pkgs; [
# Comms
slack
# Web
google-chrome
# VM
quickemu
spice
spice-gtk
virt-manager
];
}