Added typingTutor
This commit is contained in:
parent
0bfcef0578
commit
7e524a71c2
|
@ -21,6 +21,7 @@
|
||||||
../profiles/openssh.nix # Enable and configure openssh
|
../profiles/openssh.nix # Enable and configure openssh
|
||||||
../profiles/powerManagement.nix # Power management for laptops
|
../profiles/powerManagement.nix # Power management for laptops
|
||||||
../profiles/qemu.nix # Qemu virtualisation
|
../profiles/qemu.nix # Qemu virtualisation
|
||||||
|
../profiles/typingTutor.nix # Typing tutorials
|
||||||
../profiles/weechat.nix # Weechat environment
|
../profiles/weechat.nix # Weechat environment
|
||||||
../profiles/xmonad.nix # Xmonad desktop environment
|
../profiles/xmonad.nix # Xmonad desktop environment
|
||||||
../profiles/yubikey.nix # Yubikey tooling
|
../profiles/yubikey.nix # Yubikey tooling
|
||||||
|
|
15
profiles/typingTutor.nix
Normal file
15
profiles/typingTutor.nix
Normal 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
|
||||||
|
];
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in a new issue