From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Peter Baumgarten" Subject: Lock screen gnome Date: Fri, 14 Dec 2018 15:20:28 -0500 Message-ID: <95058329-5b45-47d0-ad6a-0b3eb4be65cd@sloti2d2t06> Content-Type: multipart/alternative; boundary=d7ee973e747049c8944c7144099743ba Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55116) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gXtwp-0006Cb-IN for help-guix@gnu.org; Fri, 14 Dec 2018 15:20:36 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gXtwl-00032B-Dt for help-guix@gnu.org; Fri, 14 Dec 2018 15:20:35 -0500 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:56335) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gXtwl-0002yJ-0H for help-guix@gnu.org; Fri, 14 Dec 2018 15:20:31 -0500 Received: from compute3.internal (compute3.nyi.internal [10.202.2.43]) by mailout.nyi.internal (Postfix) with ESMTP id 30E4721EDD for ; Fri, 14 Dec 2018 15:20:29 -0500 (EST) 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@gnu.org --d7ee973e747049c8944c7144099743ba Content-Type: text/plain 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)) --d7ee973e747049c8944c7144099743ba Content-Type: text/html Content-Transfer-Encoding: quoted-printable
I just ins= talled guixsd with gnome, but I can not lock the screen when hit the met= a key + L

Is there anything extra I need to= do add this functionality below is the config.scm I am using
<= div>
(use-modules (gnu) (gnu system nss))
(use-service-modules desktop)
(use-package-modules cert= s gnome gnuzilla emacs video)

(operating-sy= stem
  (host-name "guix")
  (timez= one "Europe/Paris")
  (locale "en_US.utf8")
=

  ;; Use the UEFI variant of GRUB with the EFI = System
  ;; Partition mounted on /boot/efi.
=
  (bootloader (bootloader-configuration
 &n= bsp;           &n= bsp;  (bootloader grub-efi-bootloader)
  &n= bsp;           &n= bsp; (target "/boot/efi")))

  (file-sy= stems (cons* (file-system
     &n= bsp;           &n= bsp;      (device (file-system-label "my-root")= )
         &n= bsp;           &n= bsp;  (mount-point "/")
     = ;            = ;       (type "btrfs"))
&nbs= p;           &nbs= p;          (file-system
          =             =   (device (file-system-label "my-boot"))
  =             =           (mount-point "/bo= ot")
         = ;            = ;   (type "ext2"))
     = ;            = ;      (file-system
  &= nbsp;           &= nbsp;         (device "/dev/sda1= ")
         &= nbsp;           &= nbsp;  (mount-point "/boot/efi")
   &n= bsp;           &n= bsp;        (type "vfat"))
<= div>           &n= bsp;          %base-file-sy= stems))

  (swap-devices '("/dev/sda3")= )

  (users (cons (user-account
           = ;     (name "me")
   &n= bsp;            (= group "users")
       &= nbsp;        (supplementary-groups '(= "wheel" "netdev"
       = ;            = ;            = ;         "audio" "video"))
<= /div>
          &n= bsp;     (home-directory "/home/me"))
=             =    %base-user-accounts))

  ;= ; This is where we specify system-wide packages.
  (p= ackages (cons* nss-certs        = ;for HTTPS access
      &nb= sp;            gv= fs           &nbs= p;  ;for user mounts
     &n= bsp;           &n= bsp; icecat          &= nbsp; ;main web browser
     &nbs= p;           &nbs= p; emacs          &nbs= p;  ;emacs
       =             youtu= be-dl        ;download youtube videos=
         &nb= sp;         %base-packages))
=

  ;; Add GNOME and/or Xfce---we can choos= e at the log-in
  ;; screen with F1.  Use the "d= esktop" services, which
  ;; include the X11 log-in s= ervice, networking with
  ;; NetworkManager, and more= .
  (services (cons* (gnome-desktop-service)
           =         %desktop-services))
=

  ;; Allow resolution of '.local' host names wi= th mDNS.
  (name-service-switch %mdns-host-lookup-nss= ))

--d7ee973e747049c8944c7144099743ba--