unofficial mirror of help-guix@gnu.org 
 help / color / mirror / Atom feed
* Lock screen gnome
@ 2018-12-14 20:20 Peter Baumgarten
  2018-12-14 22:33 ` Timothy Sample
  0 siblings, 1 reply; 7+ messages in thread
From: Peter Baumgarten @ 2018-12-14 20:20 UTC (permalink / raw)
  To: help-guix

[-- 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 --]

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2018-12-20 14:49 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-14 20:20 Lock screen gnome Peter Baumgarten
2018-12-14 22:33 ` 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

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).