Re: No dvorak in window manager

2018-06-18 Thread Luther Thompson
On Mon, Jun 18, 2018 at 9:25 AM, Joshua Branson 
wrote:
> Luther Thompson  writes:
>
>> 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:
>>
>
> I've had a similar problem.  I know that there are a couple of solutions
> floating around.  I think one of them my be using setxkbmap...Or
> possibly configuring X to prefer the dvorak layout...
>
> I personally never figured that issue out.  Right now I'm running
> Parabola GNU/Linux-libre, and I've got guix installed on it...
>

Update: I decided to check the latest git master commit to see if the
docs had changed. I found some
​thing about controlling ​the keyboard
layout, and I found more examples in the guix-help archives. This is
​the 'services' ​field that I ended up using:


(services (cons* (console-keymap-service "dvorak")
 (gnome-desktop-service)
 (xfce-desktop-service)
 (modify-services %desktop-services
(slim-service-type config =>
 (slim-configuration

​ ​
(inherit config)

​ ​
(​
startx (xorg-start-command

​ ​
#:configuration-file

​ ​
(xorg-configuration-file

​ ​
#:extra-config
'("Section \"InputClass\"
Identifier \"keyboard-all\"
Option \"XkbLayout\" \"dvorak\"
MatchIsKeyboard \"on\"
EndSection")


​This successfully fixed the problem in the ​login manager. (GNOME, of
course, had to be configured separately.)

-- 
Luther Thompson


Re: Can't configure guix, no guile-sqlite3

2018-06-18 Thread Pierre Neidhardt

I have a similar issue.

> which guix
/run/current-system/profile/bin/guix

> guix edit guix
# The package definition is in 
# /home/ambrevar/.config/guix/latest/gnu/packages/package-management.scm

So guix is using "latest" instead of "current".
I suppose that if `guix' is not in my user profile, then the system guix
has to be updated via a `guix system reconfigure`.
Correct?

Or should `sudo guix pull` be enough?

-- 
Pierre Neidhardt


signature.asc
Description: PGP signature


Re: Can't configure guix, no guile-sqlite3

2018-06-18 Thread Ludovic Courtès
Hi Thorsten,

Thorsten Wilms  skribis:

> configure fails with:
> checking whether Guile-Sqlite3 is available and recent enough... no

[...]

> $: which guix => /home/thorwil/.config/guix/current/bin/guix
>
> $: guix pull -l
> ...
>   Generation 8Jun 17 2018 20:01:23(current)
> guix b4eae99
>   repository URL: https://git.savannah.gnu.org/git/guix.git
>   branch: origin/master
>   commit: b4eae997fe5b928f179c34d281e9f2c3eccd3670

Add this commit, the ‘guix’ package definitely has ‘guile-sqlite3’ as an
input.  Could you run ‘guix edit guix’ to double-check?

Perhaps you need to run “hash guix” (in Bash) or something?

HTH,
Ludo’.



Re: No dvorak in window manager

2018-06-18 Thread Joshua Branson
Luther Thompson  writes:

> 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:
>

I've had a similar problem.  I know that there are a couple of solutions
floating around.  I think one of them my be using setxkbmap...Or
possibly configuring X to prefer the dvorak layout...

I personally never figured that issue out.  Right now I'm running
Parabola GNU/Linux-libre, and I've got guix installed on it...