diff --git a/hosts/dionach.nix b/hosts/dionach.nix index 8470b37..e5bf8a1 100644 --- a/hosts/dionach.nix +++ b/hosts/dionach.nix @@ -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 diff --git a/profiles/typingTutor.nix b/profiles/typingTutor.nix new file mode 100644 index 0000000..5f65c86 --- /dev/null +++ b/profiles/typingTutor.nix @@ -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 + ]; + }; + +}