From mboxrd@z Thu Jan 1 00:00:00 1970 From: Luther Thompson Subject: No dvorak in window manager Date: Sun, 17 Jun 2018 19:00:45 -0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:43695) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fUgfC-0004uC-5W for help-guix@gnu.org; Sun, 17 Jun 2018 19:00:51 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fUgfB-0003cx-GF for help-guix@gnu.org; Sun, 17 Jun 2018 19:00:50 -0400 Received: from mail-wm0-x22b.google.com ([2a00:1450:400c:c09::22b]:55777) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fUgfB-0003cg-8m for help-guix@gnu.org; Sun, 17 Jun 2018 19:00:49 -0400 Received: by mail-wm0-x22b.google.com with SMTP id v16-v6so11113433wmh.5 for ; Sun, 17 Jun 2018 16:00:47 -0700 (PDT) List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-guix-bounces+gcggh-help-guix=m.gmane.org@gnu.org Sender: "Help-Guix" To: help-guix I installed GuixSD today. When I boot up, both the login manager and the desktop session use qwerty. I do see dvorak when I hit Ctrl+Alt+F2 for a non-window console. `loadkeys dvorak` has no effect in either place. Here is my OS definition: (use-modules (gnu) (gnu system nss)) (use-service-modules desktop) (use-package-modules certs gnome) (operating-system (host-name "targaryen") (timezone "America/New_York") (locale "en_US.utf8") (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "/dev/sda"))) (file-systems (cons (file-system (device "my-root") (mount-point "/") (type "ext4") (title 'label)) %base-file-systems)) (users (cons (user-account (name "luther") (comment "Luther Thompson") (group "users") (supplementary-groups '("wheel" "netdev" "audio" "video")) (home-directory "/home/luther")) %base-user-accounts)) ;; This is where we specify system-wide packages. (packages (cons* nss-certs ;for HTTPS access gvfs ;for user mounts %base-packages)) ;; Add GNOME and/or Xfce---we can choose at the log-in ;; screen with F1. Use the "desktop" services, which ;; include the X11 log-in service, networking with Wicd, ;; and more. (services (cons* (console-keymap-service "dvorak") (gnome-desktop-service) (xfce-desktop-service) %desktop-services)) ;; Allow resolution of '.local' host names with mDNS. (name-service-switch %mdns-host-lookup-nss) (swap-devices '("/swapfile"))) -- Luther Thompson