Added typingTutor

This commit is contained in:
Serĉanto de Scio 2021-05-21 15:14:16 +10:00
parent 0bfcef0578
commit 7e524a71c2
Signed by: sercanto
GPG key ID: 7DBA9F5689EFB6AA
2 changed files with 16 additions and 0 deletions

View file

@ -21,6 +21,7 @@
../profiles/openssh.nix # Enable and configure openssh
../profiles/powerManagement.nix # Power management for laptops
../profiles/qemu.nix # Qemu virtualisation
../profiles/typingTutor.nix # Typing tutorials
../profiles/weechat.nix # Weechat environment
../profiles/xmonad.nix # Xmonad desktop environment
../profiles/yubikey.nix # Yubikey tooling

15
profiles/typingTutor.nix Normal file
View file

@ -0,0 +1,15 @@
# 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
];
};
}