Rutherther <[email protected]> writes:
> Could you send your config? It's very hard to say without it.

Here is my config:

    (use-modules (gnu))
    (use-service-modules cups desktop networking ssh xorg)
    
    (operating-system
      (locale "fr_CH.utf8")
      (timezone "Europe/Zurich")
      (keyboard-layout (keyboard-layout "fr" "bepo"))
      (host-name "Finwe")
    
      (users (cons* (user-account
                      (name "seb")
                      (comment "Sebastien")
                      (group "users")
                      (home-directory "/home/seb")
                      (supplementary-groups '("wheel" "netdev" "audio" 
"video")))
                    %base-user-accounts))
    
      (services
       (append (list (service gnome-desktop-service-type)
                     (service cups-service-type)
                     (set-xorg-configuration
                      (xorg-configuration (keyboard-layout keyboard-layout))))
    
               %desktop-services))
      (bootloader (bootloader-configuration
                    (bootloader grub-efi-bootloader)
                    (targets (list "/boot/efi"))
                    (keyboard-layout keyboard-layout)))
      (mapped-devices (list (mapped-device
                              (source (uuid
                                       "772bbc21-4347-4ee8-8a98-c8c71655b688"))
                              (target "cryptroot")
                              (type luks-device-mapping))))

      (file-systems (cons* (file-system
                             (mount-point "/boot/efi")
                             (device (uuid "BB8E-FB4F"
                                           'fat32))
                             (type "vfat"))
                           (file-system
                             (mount-point "/")
                             (device "/dev/mapper/cryptroot")
                             (type "ext4")
                             (dependencies mapped-devices)) 
%base-file-systems)))

Reply via email to