aboutsummaryrefslogtreecommitdiff
path: root/gnu/system/examples/lightweight-desktop.tmpl
blob: 360ee62ffe26157435f8339236794eff59a3f1a6 (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
;; This is an operating system configuration template
;; for a "desktop" setup without full-blown desktop
;; environments.

(use-modules (gnu) (gnu system nss))
(use-service-modules desktop)
(use-package-modules bootloaders certs ratpoison suckless wm)

(operating-system
  (host-name "antelope")
  (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")))

  ;; Assume the target root file system is labelled "my-root",
  ;; and the EFI System Partition has UUID 1234-ABCD.
  (file-systems (cons* (file-system
                         (device (file-system-label "my-root"))
                         (mount-point "/")
                         (type "ext4"))
                       (file-system
                         (device (uuid "1234-ABCD" 'fat))
                         (mount-point "/boot/efi")
                         (type "vfat"))
                       %base-file-systems))

  (users (cons (user-account
                (name "alice")
                (comment "Bob's sister")
                (group "users")
                (supplementary-groups '("wheel" "netdev"
                                        "audio" "video"))
                (home-directory "/home/alice"))
               %base-user-accounts))

  ;; Add a bunch of window managers; we can choose one at
  ;; the log-in screen with F1.
  (packages (cons* ratpoison i3-wm i3status dmenu ;window managers
                   nss-certs                      ;for HTTPS access
                   %base-packages))

  ;; Use the "desktop" services, which include the X11
  ;; log-in service, networking with NetworkManager, and more.
  (services %desktop-services)

  ;; Allow resolution of '.local' host names with mDNS.
  (name-service-switch %mdns-host-lookup-nss))
'>system: Initialize console keyboard layout in the initrd....Ludovic Courtès 2018-11-21linux-initrd: 'expression->initrd' returns the complete file name....Ludovic Courtès 2018-11-18linux-initrd: Return file-like objects instead of monadic values....Ludovic Courtès 2018-07-29linux-initrd: Try several file names when looking up modules....Ludovic Courtès 2018-05-23linux-initrd: Enable "virtio-rng"....Ludovic Courtès 2018-03-15linux-initrd: Move 'check-device-initrd-modules' elsewhere....Ludovic Courtès 2018-03-10linux-initrd: Autoload known-module-aliases....Danny Milosavljevic 2018-03-10linux-initrd: Skip initrd module check when 'modules.alias' can't be found....Ludovic Courtès 2018-03-07linux-initrd: Add a hint for the missing module error....Ludovic Courtès 2018-03-07linux-initrd: Factorize 'check-device-initrd-modules'....Ludovic Courtès 2018-03-03linux-initrd: Add virtio modules to '%base-initrd-modules'....Ludovic Courtès 2018-03-03linux-initrd: 'file-system-modules' returns the right module list....Ludovic Courtès 2018-03-02system: Add 'initrd-modules' field....Ludovic Courtès 2018-03-02linux-initrd: Separate file system module logic....Ludovic Courtès 2018-01-30gnu: linux-libre: NVME core support is now built-in....Mark H Weaver 2018-01-08linux-boot: Add #:on-error for initrd error handling....Ludovic Courtès 2017-11-08build: Use overlayfs instead of unionfs....Hartmut Goebel 2017-10-11file-systems: 'mount-file-system' now takes a <file-system> object....Ludovic Courtès 2017-10-08linux-initrd: Ensure that the guile used in the initrd is referenced....Christopher Baines 2017-07-04linux-initrd: Avoid monadic style a bit....Ludovic Courtès 2017-07-02linux-initrd: Add isofs if necessary....Danny Milosavljevic 2017-05-19vm: Support creating FAT partitions....Marius Bakke 2017-03-21file-systems: Do not use (gnu packages …)....Ludovic Courtès 2017-03-18file-systems: Factorize file-system-packages....Danny Milosavljevic 2017-03-11linux-initrd: Add a raw-initrd and use it to define base-initrd....Mathieu Othacehe 2017-01-10system: Add btrfs file system support....David Craven 2016-12-18linux-initrd: Support FAT filesystems....Marius Bakke