nixos-config/modules/gui-tools.nix

15 lines
387 B
Nix

{ pkgs, ... }:
{
environment.systemPackages = with pkgs; [
anki # flashcard SRS
filezilla # ftp client
gparted # gui for parted
qalculate-gtk # flexible calculator
antimicroX # gamepad to keyboard/mouse mapping
wl-clipboard # not really gui, but cli tool to manage wayland clipboard
wxhexeditor # hex editor
xfce.thunar # graphical file manager
];
}