;; This is an operating system configuration template for a "Docker image" ;; setup, so it has barely any services at all. (use-modules (gnu)) (operating-system (host-name "komputilo") (timezone "Europe/Berlin") (locale "en_US.utf8") ;; This is where user accounts are specified. The "root" account is ;; implicit, and is initially created with the empty password. (users (cons (user-account (name "alice") (comment "Bob's sister") (group "users") (supplementary-groups '("wheel" "audio" "video"))) %base-user-accounts)) ;; Globally-installed packages. (packages %base-packages) ;; Because the system will run in a Docker container, we may omit many ;; things that would normally be required in an operating system ;; configuration file. These things include: ;; ;; * bootloader ;; * file-systems ;; * services such as mingetty, udevd, slim, networking, dhcp ;; ;; Either these things are simply not required, or Docker provides ;; similar services for us. ;; This will be ignored. (bootloader (bootloader-configuration (bootloader grub-bootloader) (target "does-not-matter"))) ;; This will be ignored, too. (file-systems (list (file-system (device "does-not-matter") (mount-point "/") (type "does-not-matter")))) ;; Guix is all you need! (services (list (service guix-service-type)))) ss='right' method='get' action='/guix/log/gnu/packages/emacs.scm'>
path: root/gnu/packages/emacs.scm
AgeCommit message (Expand)Author
2021-03-25gnu: emacs: Update to 27.2....Tobias Geerinckx-Rice
2021-02-01gnu: emacs-next-pgtk: Update to 28.0.50-1.ae18c8e....Léo Le Bouter
2021-01-31gnu: emacs: Make strip-double-wrap more robust...Morgan Smith
2020-12-01gnu: emacs-next-pgtk: Update to savannah feature/pgtk branch....Ryan Prior
2020-11-26gnu: Add emacs-next-pgtk....Andrew Tropin
2020-11-11gnu: emacs.scm: Remove unused module import....Marius Bakke
2020-11-03Revert "gnu: emacs: Make strip-double-wrap more robust."...Nicolas Goaziou
2020-11-03gnu: emacs: Make strip-double-wrap more robust....Morgan Smith
2020-10-01gnu: emacs-next: Fix load path and version....Morgan Smith
2020-09-02gnu: Add emacs-next....Morgan Smith
2020-08-31gnu: emacs: Strip double wrap....Leo Prikler
2020-08-29Revert "gnu: emacs: Strip double wrap."...Mathieu Othacehe
2020-08-29gnu: emacs: Strip double wrap....Leo Prikler
2020-08-28gnu: emacs: Update to 27.1....Mark H Weaver
2020-08-03gnu: emacs: Ignore empty XIM styles....Leo Prikler