mirror of
https://gitlab.com/ahoneybun/nyxi-installer.git
synced 2025-05-12 02:54:03 -06:00
22 lines
391 B
Nix
22 lines
391 B
Nix
{ config, pkgs, ... }:
|
|
|
|
{
|
|
# virt-manager
|
|
virtualisation.libvirtd.enable = true;
|
|
|
|
# Packages
|
|
environment.systemPackages =
|
|
with pkgs;
|
|
[
|
|
discord
|
|
libreoffice-fresh
|
|
slack
|
|
virt-manager
|
|
];
|
|
|
|
programs.fish.enable = true;
|
|
|
|
users.users.aaronh = {
|
|
shell = pkgs.fish;
|
|
};
|
|
}
|