nixos-config/modules/gui-tools.nix

14 lines
320 B
Nix
Raw Normal View History

2020-08-22 17:44:39 +02:00
{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
anki # flashcard SRS
unstable.antimicroX # gamepad to keyboard/mouse mapping
filezilla # ftp client
gparted # gui for parted
xfce.thunar # graphical file manager
qalculate-gtk # flexible calculator
wxhexeditor # hex editor
];
}