18 lines
330 B
Nix
18 lines
330 B
Nix
{ pkgs, ... }:
|
|
{
|
|
environment.systemPackages = with pkgs; [
|
|
mpv
|
|
pavucontrol
|
|
tdesktop
|
|
nheko
|
|
firefox
|
|
nomacs
|
|
libreoffice
|
|
gimp
|
|
syncplay
|
|
];
|
|
services.dbus.packages = with pkgs; [ gnome3.dconf ];
|
|
services.gvfs.enable = true;
|
|
services.udisks2.enable = true;
|
|
services.devmon.enable = true;
|
|
}
|