all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: "Peter Baumgarten" <me@peterbaumgarten.com>
To: help-guix@gnu.org
Subject: Lock screen gnome
Date: Fri, 14 Dec 2018 15:20:28 -0500	[thread overview]
Message-ID: <95058329-5b45-47d0-ad6a-0b3eb4be65cd@sloti2d2t06> (raw)

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

I just installed guixsd with gnome, but I can not lock the screen when hit the meta key + L 
 
Is there anything extra I need to do add this functionality below is the config.scm I am using 
 
(use-modules (gnu) (gnu system nss)) 
(use-service-modules desktop) 
(use-package-modules certs gnome gnuzilla emacs video) 
 
(operating-system 
 (host-name "guix") 
 (timezone "Europe/Paris") 
 (locale "en_US.utf8") 
 
 ;; Use the UEFI variant of GRUB with the EFI System 
 ;; Partition mounted on /boot/efi. 
 (bootloader (bootloader-configuration 
 (bootloader grub-efi-bootloader) 
 (target "/boot/efi"))) 
 
 (file-systems (cons* (file-system 
 (device (file-system-label "my-root")) 
 (mount-point "/") 
 (type "btrfs")) 
 (file-system 
 (device (file-system-label "my-boot")) 
 (mount-point "/boot") 
 (type "ext2")) 
 (file-system 
 (device "/dev/sda1") 
 (mount-point "/boot/efi") 
 (type "vfat")) 
 %base-file-systems)) 
 
 (swap-devices '("/dev/sda3")) 
 
 (users (cons (user-account 
 (name "me") 
 (group "users") 
 (supplementary-groups '("wheel" "netdev" 
 "audio" "video")) 
 (home-directory "/home/me")) 
 %base-user-accounts)) 
 
 ;; This is where we specify system-wide packages. 
 (packages (cons* nss-certs ;for HTTPS access 
 gvfs ;for user mounts 
 icecat ;main web browser 
 emacs ;emacs 
 youtube-dl ;download youtube videos 
 %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* (gnome-desktop-service) 
 %desktop-services)) 
 
 ;; Allow resolution of '.local' host names with mDNS. 
 (name-service-switch %mdns-host-lookup-nss)) 
 

[-- Attachment #2: Type: text/html, Size: 6270 bytes --]

             reply	other threads:[~2018-12-14 20:20 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-12-14 20:20 Peter Baumgarten [this message]
2018-12-14 22:33 ` Lock screen gnome Timothy Sample
2018-12-16  5:05   ` Chris Marusich
2018-12-16 17:35     ` Peter Baumgarten
2018-12-19 13:52   ` Ludovic Courtès
2018-12-19 19:43     ` Gábor Boskovits
2018-12-20 14:48       ` Timothy Sample

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=95058329-5b45-47d0-ad6a-0b3eb4be65cd@sloti2d2t06 \
    --to=me@peterbaumgarten.com \
    --cc=help-guix@gnu.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.