mirror of
https://gitlab.com/ahoneybun/nix-configs.git
synced 2025-05-12 11:14:02 -06:00
27 lines
436 B
Nix
27 lines
436 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# virt-manager
|
|
virtualisation.libvirtd.enable = true;
|
|
|
|
# Packages
|
|
environment.systemPackages =
|
|
with pkgs;
|
|
[
|
|
# Comms
|
|
discord
|
|
signal-desktop
|
|
|
|
# Office
|
|
libreoffice-fresh
|
|
|
|
# Work
|
|
slack
|
|
virt-manager
|
|
vscode
|
|
|
|
# Streaming
|
|
obs-studio
|
|
];
|
|
|
|
}
|