27 lines
468 B
Nix
27 lines
468 B
Nix
{ pkgs, ... }: {
|
|
environment.systemPackages = with pkgs; [
|
|
mpv
|
|
pavucontrol
|
|
signal-desktop
|
|
tdesktop
|
|
nheko
|
|
firefox
|
|
chromium
|
|
nomacs
|
|
libreoffice
|
|
gimp
|
|
krita
|
|
inkscape
|
|
syncplay
|
|
pcmanfm
|
|
ark
|
|
|
|
cmus
|
|
cmusfm
|
|
];
|
|
services.dbus.packages = with pkgs; [ gnome3.dconf ];
|
|
services.gvfs.enable = true;
|
|
services.udisks2.enable = true;
|
|
services.devmon.enable = true;
|
|
boot.supportedFilesystems = [ "ntfs" ];
|
|
}
|