16 lines
284 B
Nix
16 lines
284 B
Nix
|
# NixOps typing tutorials
|
||
|
|
||
|
{ pkgs, ... }:
|
||
|
|
||
|
{
|
||
|
|
||
|
environment = {
|
||
|
systemPackages = with pkgs; [
|
||
|
gtypist # Universal typing tutor
|
||
|
klavaro # Free touch typing tutor program
|
||
|
tuxtype # Educational Typing Tutor Game Starring Tux, the Linux Penguin
|
||
|
];
|
||
|
};
|
||
|
|
||
|
}
|