2016-03-22 23:48:21 +01:00
|
|
|
;; 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)
|
2017-05-18 19:24:36 +02:00
|
|
|
(use-package-modules bootloaders certs ratpoison suckless wm)
|
2016-03-22 23:48:21 +01:00
|
|
|
|
|
|
|
(operating-system
|
|
|
|
(host-name "antelope")
|
|
|
|
(timezone "Europe/Paris")
|
2017-02-13 09:57:01 +01:00
|
|
|
(locale "en_US.utf8")
|
2016-03-22 23:48:21 +01:00
|
|
|
|
2017-05-18 19:24:36 +02:00
|
|
|
;; Use the UEFI variant of GRUB with the EFI System
|
2017-08-20 10:48:19 +02:00
|
|
|
;; Partition mounted on /boot/efi.
|
|
|
|
(bootloader (bootloader-configuration
|
|
|
|
(bootloader grub-efi-bootloader)
|
2017-08-23 21:48:58 +02:00
|
|
|
(target "/boot/efi")))
|
2017-05-18 19:24:36 +02:00
|
|
|
|
2017-10-04 09:10:42 +02:00
|
|
|
;; Assume the target root file system is labelled "my-root",
|
|
|
|
;; and the EFI System Partition has UUID 1234-ABCD.
|
2019-01-21 19:37:59 +01:00
|
|
|
(file-systems (append
|
|
|
|
(list (file-system
|
2018-05-18 13:43:07 +02:00
|
|
|
(device (file-system-label "my-root"))
|
2017-05-18 19:24:36 +02:00
|
|
|
(mount-point "/")
|
|
|
|
(type "ext4"))
|
|
|
|
(file-system
|
2017-10-04 09:10:42 +02:00
|
|
|
(device (uuid "1234-ABCD" 'fat))
|
2017-05-18 19:24:36 +02:00
|
|
|
(mount-point "/boot/efi")
|
2019-01-21 19:37:59 +01:00
|
|
|
(type "vfat")))
|
|
|
|
%base-file-systems))
|
2016-03-22 23:48:21 +01:00
|
|
|
|
|
|
|
(users (cons (user-account
|
|
|
|
(name "alice")
|
2016-09-07 20:02:28 +02:00
|
|
|
(comment "Bob's sister")
|
2016-03-22 23:48:21 +01:00
|
|
|
(group "users")
|
|
|
|
(supplementary-groups '("wheel" "netdev"
|
2019-03-22 14:06:54 +01:00
|
|
|
"audio" "video")))
|
2016-03-22 23:48:21 +01:00
|
|
|
%base-user-accounts))
|
|
|
|
|
|
|
|
;; Add a bunch of window managers; we can choose one at
|
|
|
|
;; the log-in screen with F1.
|
2019-01-21 19:37:59 +01:00
|
|
|
(packages (append (list
|
|
|
|
;; window managers
|
|
|
|
ratpoison i3-wm i3status dmenu
|
|
|
|
;; for HTTPS access
|
|
|
|
nss-certs)
|
|
|
|
%base-packages))
|
2016-03-22 23:48:21 +01:00
|
|
|
|
|
|
|
;; Use the "desktop" services, which include the X11
|
2018-01-21 00:18:34 +01:00
|
|
|
;; log-in service, networking with NetworkManager, and more.
|
2016-03-22 23:48:21 +01:00
|
|
|
(services %desktop-services)
|
|
|
|
|
|
|
|
;; Allow resolution of '.local' host names with mDNS.
|
|
|
|
(name-service-switch %mdns-host-lookup-nss))
|