14 lines
320 B
Nix
14 lines
320 B
Nix
|
{ 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
|
||
|
];
|
||
|
}
|