From 7e524a71c203b6885adb980253bb2ed18423cfb6 Mon Sep 17 00:00:00 2001 From: Craige McWhirter Date: Fri, 21 May 2021 15:14:16 +1000 Subject: [PATCH] Added typingTutor --- hosts/dionach.nix | 1 + profiles/typingTutor.nix | 15 +++++++++++++++ 2 files changed, 16 insertions(+) create mode 100644 profiles/typingTutor.nix 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 + ]; + }; + +}