all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Quiliro Ordonez <quiliro@riseup.net>
To: help-guix@gnu.org
Subject: Re: National keyboard layout for Polish
Date: Thu, 18 Apr 2019 12:24:41 -0700	[thread overview]
Message-ID: <d68429b778f1078ea59efbf405cedcc1@riseup.net> (raw)
In-Reply-To: <87r2a0731e.fsf@gnu.org>

[-- Attachment #1: Type: text/plain, Size: 841 bytes --]

El 2019-04-17 21:08, Ludovic Courtès escribió:
> Hello,
> 
> Adam Mazurkiewicz <trzczy@gmail.com> skribis:
> 
>> How to set Polish keyboard layout to get Polish special letters?
>> https://dailyweb.pl/wp-content/uploads/2016/11/zazolc.png
>> They should be available in Gedit, Web browser address bar, etc. I
>> have Xfce Desktop Environment.
> 
> With the new keyboard layout mechanism, I believe you could get it with:
> 
>   (keyboard-layout "pl")
> 
> Try running:
> 
>   info "(guix) Keyboard Layout"
> 
> to read on how to use it.
> 
> HTH!
> 
> Ludo’.

I get this error with 'guix system reconfigure desktop-full-dvorak.scm'.

/home/quiliro/desktop-full-dvorak.scm:72:12: error:
set-xorg-configuration: unbound variable
hint: Did you forget `(use-modules (gnu services xorg))'?

The file is attached.

[-- Attachment #2: desktop-full-dvorak.scm --]
[-- Type: text/plain, Size: 2576 bytes --]

;; This is an operating system configuration template
;; for a "desktop" setup with GNOME and Xfce

(use-modules (gnu) (gnu system nss))
(use-service-modules desktop)
(use-package-modules certs gnome)

(operating-system
 (host-name "GSD3")
 (timezone "America/Guayaquil")
 (locale "es_EC.UTF-8")
 (keyboard-layout (keyboard-layout "es" "dvorak"))  ;for the console
 
 ;; Use the BIOS variant of GRUB
 (bootloader (bootloader-configuration
              (bootloader grub-bootloader)
              (target "/dev/sda")
	      (keyboard-layout keyboard-layout))) ;for GRUB
 
 (file-systems (cons*
		(file-system
		 (device (uuid "021e4962-a7e2-4996-a2d7-b746df956172"))
		 (mount-point "/")
		 (type "ext4"))
		(file-system
		 (device (uuid "6e8ca224-ab9b-476b-98b0-c0b22a172577"))
		 (mount-point "/home/quiliro/respaldos")
		 (type "ext4"))
                %base-file-systems))
 
 (swap-devices '("/dev/sda1"))
 
 (users (cons*
	 (user-account
	  (name "quiliro")
          (comment "Quiliro Ordóñez")
          (group "users")
          (supplementary-groups '("wheel" "netdev" "audio" "video"))
          (home-directory "/home/quiliro"))
	 (user-account
	  (name "analucia")
          (comment "Ana Lucia Barahona Escalante")
          (group "users")
          (supplementary-groups '("netdev" "audio" "video"))
          (home-directory "/home/analucia"))
	 (user-account
	  (name "invitado")
          (comment "Usuario invitado")
          (group "users")
          (supplementary-groups '("netdev" "audio" "video"))
          (home-directory "/home/invitado"))
	 (user-account
	  (name "saslibre")
          (comment "Servicios Académicos y de Software Libre")
          (group "users")
          (supplementary-groups '("wheel" "netdev" "audio" "video"))
          (home-directory "/home/saslibre"))
         %base-user-accounts))
 
 ;; This is where we specify system-wide packages.
 (packages (append (list
		    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
 ;; NetworkManager, and more.
 (services (cons*
	    (service gnome-desktop-service-type)
            (service xfce-desktop-service-type)
	    (set-xorg-configuration
	     (xorg-configuration             ;for Xorg
	      (keyboard-layout keyboard-layout)))
	    %desktop-services))
 
 ;; Allow resolution of '.local' host names with mDNS.
 (name-service-switch %mdns-host-lookup-nss))

  reply	other threads:[~2019-04-18 19:24 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-04-12 22:05 National keyboard layout for Polish Adam Mazurkiewicz
2019-04-17 21:08 ` Ludovic Courtès
2019-04-18 19:24   ` Quiliro Ordonez [this message]
2019-04-18 19:37     ` Quiliro Ordonez
2019-04-18 19:42     ` Andreas Enge
2019-04-19  2:16       ` Quiliro Ordonez
2019-04-19 12:13       ` Ludovic Courtès
2019-04-20 18:16         ` Quiliro Ordonez
2019-04-20 18:21           ` Quiliro Ordonez
2019-04-21 12:36             ` Ludovic Courtès
2019-04-21 18:03               ` Quiliro Ordonez

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=d68429b778f1078ea59efbf405cedcc1@riseup.net \
    --to=quiliro@riseup.net \
    --cc=help-guix@gnu.org \
    --cc=quiliro@fsfla.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.