aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/examples/desktop.tmpl
blob: 7055a8f92d4681911daa3fb8683854747646cc8e (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
;; This is an operating system configuration template
;; for a "desktop" setup with GNOME and Xfce where the
;; root partition is encrypted with LUKS, and a swap file.

(use-modules (gnu) (gnu system nss) (guix utils))
(use-service-modules desktop sddm xorg)
(use-package-modules certs gnome)

(operating-system
  (host-name "antelope")
  (timezone "Europe/Paris")
  (locale "en_US.utf8")

  ;; Choose US English keyboard layout.  The "altgr-intl"
  ;; variant provides dead keys for accented characters.
  (keyboard-layout (keyboard-layout "us" "altgr-intl"))

  ;; Use the UEFI variant of GRUB with the EFI System
  ;; Partition mounted on /boot/efi.
  (bootloader (bootloader-configuration
                (bootloader grub-efi-bootloader)
                (targets '("/boot/efi"))
                (keyboard-layout keyboard-layout)))

  ;; Specify a mapped device for the encrypted root partition.
  ;; The UUID is that returned by 'cryptsetup luksUUID'.
  (mapped-devices
   (list (mapped-device
          (source (uuid "12345678-1234-1234-1234-123456789abc"))
          (target "my-root")
          (type luks-device-mapping))))

  (file-systems (append
                 (list (file-system
                         (device (file-system-label "my-root"))
                         (mount-point "/")
                         (type "ext4")
                         (dependencies mapped-devices))
                       (file-system
                         (device (uuid "1234-ABCD" 'fat))
                         (mount-point "/boot/efi")
                         (type "vfat")))
                 %base-file-systems))

  ;; Specify a swap file for the system, which resides on the
  ;; root file system.
  (swap-devices (list (swap-space
                       (target "/swapfile"))))

  ;; Create user `bob' with `alice' as its initial password.
  (users (cons (user-account
                (name "bob")
                (comment "Alice's brother")
                (password (crypt "alice" "$6$abc"))
                (group "students")
                (supplementary-groups '("wheel" "netdev"
                                        "audio" "video")))
               %base-user-accounts))

  ;; Add the `students' group
  (groups (cons* (user-group
                  (name "students"))
                 %base-groups))

  ;; This is where we specify system-wide packages.
  (packages (append (list
                     ;; for HTTPS access
                     nss-certs
                     ;; for user mounts
                     gvfs)
                    %base-packages))

  ;; Add GNOME and Xfce---we can choose at the log-in screen
  ;; by clicking the gear.  Use the "desktop" services, which
  ;; include the X11 log-in service, networking with
  ;; NetworkManager, and more.
  (services (if (target-x86-64?)
                (append (list (service gnome-desktop-service-type)
                              (service xfce-desktop-service-type)
                              (set-xorg-configuration
                               (xorg-configuration
                                (keyboard-layout keyboard-layout))))
                        %desktop-services)

                ;; FIXME: Since GDM depends on Rust (gdm -> gnome-shell -> gjs
                ;; -> mozjs -> rust) and Rust is currently unavailable on
                ;; non-x86_64 platforms, we use SDDM and Mate here instead of
                ;; GNOME and GDM.
                (append (list (service mate-desktop-service-type)
                              (service xfce-desktop-service-type)
                              (set-xorg-configuration
                               (xorg-configuration
                                (keyboard-layout keyboard-layout))
                               sddm-service-type))
                        %desktop-services)))

  ;; Allow resolution of '.local' host names with mDNS.
  (name-service-switch %mdns-host-lookup-nss))
class='msg-avail'>...* gnu/packages/freedesktop.scm (wayland-protocols): Update to 1.20. Marius Bakke 2020-07-25gnu: libinput: Update to 1.15.6....* gnu/packages/freedesktop.scm (libinput): Update to 1.15.6. Marius Bakke 2020-06-27gnu: exempi: Delete the static library....* gnu/packages/freedesktop.scm (exempi)[arguments]: Add phase to delete libexempi.a. Marius Bakke 2020-06-27gnu: exempi: Update to 2.5.2....* gnu/packages/freedesktop.scm (exempi): Update to 2.5.2. Marius Bakke 2020-06-08Merge branch 'master' into stagingMarius Bakke 2020-06-06gnu: libqmi: Update to 1.24.14....* gnu/packages/freedesktop.scm (libqmi): Update to 1.24.14. Tobias Geerinckx-Rice 2020-06-06Merge branch 'master' into stagingMarius Bakke 2020-06-06gnu: libqmi: Update to 1.24.12....* gnu/packages/freedesktop.scm (libqmi): Update to 1.24.12. Tobias Geerinckx-Rice 2020-05-26Merge branch 'master' into stagingMarius Bakke 2020-05-26gnu: libinput: Update to 1.15.5....* gnu/packages/freedesktop.scm (libinput): Update to 1.15.5. Marius Bakke 2020-05-22gnu: modem-manager: Update to 1.12.10....* gnu/packages/freedesktop.scm (modem-manager): Update to 1.12.10. [arguments]: Remove arguments '--disable-more-warnings'. Brice Waegeneire 2020-05-14gnu: Add libappindicator....* gnu/packages/freedesktop.scm (libappindicator): New variable. Signed-off-by: Pierre Neidhardt <mail@ambrevar.xyz> Nicolò Balzarotti 2020-05-14gnu: Add libindicator....* gnu/packages/freedesktop.scm (libindicator): New variable. Signed-off-by: Pierre Neidhardt <mail@ambrevar.xyz> Nicolò Balzarotti 2020-05-14gnu: udisks: Appease guix lint....The line is too long and HTML docs are build fine without it. * gnu/packages/freedesktop.scm (udisks)[arguments]: Remove configure flag '--enable-gtk-doc'. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Brice Waegeneire 2020-05-14gnu: udisks: Update to 2.8.4....* gnu/packages/freedesktop.scm (udisks): Update to 2.8.4. Signed-off-by: Efraim Flashner <efraim@flashner.co.il> Brice Waegeneire 2020-05-11gnu: waylandpp: Update to 0.2.7....* gnu/packages/freedesktop.scm (waylandpp): Update to 0.2.7. Marius Bakke 2020-05-08Merge branch 'core-updates'Marius Bakke 2020-05-07gnu: Add plymouth....* gnu/packages/freedesktop.scm (plymouth): New variable. Co-authored-by: Nikita <nikita@n0.is> Signed-off-by: Ricardo Wurmus <rekado@elephly.net> Ricardo Wurmus 2020-04-13Merge branch 'master' into core-updatesMarius Bakke 2020-04-12gnu: udiskie: Fix grammar of "allows to manage" to "manages"....* gnu/packages/freedesktop (udiskie): Fix grammar. Vagrant Cascadian 2020-03-21Merge branch 'master' into core-updatesMarius Bakke 2020-03-20gnu: Add wev....* gnu/packages/freedesktop.scm (wev): New variable. Signed-off-by: Marius Bakke <mbakke@fastmail.com> Brendan Tildesley 2020-03-14Merge branch 'master' into core-updatesMarius Bakke