devos/profiles/workstation/default.nix
2022-07-14 11:47:00 +02:00

27 lines
553 B
Nix

{ pkgs, ... }: {
environment.systemPackages = with pkgs; [
pavucontrol
signal-desktop
tdesktop
firefox-wayland
chromium
nomacs
libreoffice
gimp
krita
inkscape
syncplay
pcmanfm
ark
cmus
cmusfm
];
services.dbus.packages = with pkgs; [ dconf ];
services.gvfs.enable = true;
services.udisks2.enable = true;
services.devmon.enable = true;
virtualisation.waydroid.enable = true;
boot.supportedFilesystems = [ "ntfs" ];
boot.kernelPackages = pkgs.linuxKernel.packages.linux_zen;
}