These macros allow for nicer and more condensed loading of package,
service, and system modules in the OS EDSL. For an example of this,
please take a look of the sample-os-config.scm (above the commented-out
line).
I want to thank davexunit for his influence on this , this will be my
first non-package recipe config. :^)
As always, if you see something blatantly astray don't be shy to poke
the ol' bootay.
Thanks & Regards.
- JGrant.
From ee940d31ec9b3847c1bd9dfe817ba8f6550361bc Mon Sep 17 00:00:00 2001
From: "Joshua S. Grant" <jgr...@parethetical.io>
Date: Sun, 18 Jan 2015 16:23:21 -0600
Subject: [PATCH] [PATCH] gnu.scm: add syntactic sugar macros for use-modules
of packages, services, and system in the OS EDSL.
---
gnu.scm | 16 ++++++++++++++++
1 file changed, 16 insertions(+)
diff --git a/gnu.scm b/gnu.scm
index eb0bf71..bca4586 100644
--- a/gnu.scm
+++ b/gnu.scm
@@ -1,5 +1,6 @@
;;; GNU Guix --- Functional package management for GNU
;;; Copyright © 2014 Ludovic Courtès <l...@gnu.org>
+;;; Copyright © 2015 Joshua S. Grant <jgr...@parenthetical.io>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -44,4 +45,19 @@
(module-use! i (resolve-interface m))))
%public-modules)))
+;;; Commentary:
+;;;
+;;; Macros that add Syntatic Sugar to use-modules of packages, services, and system.
+;;;
+;;; Code:
+
+(define-syntax-rule (use-package-modules module ...)
+ (use-modules (gnu packages module) ...))
+
+(define-syntax-rule (use-service-modules module ...)
+ (use-modules (gnu services module) ...))
+
+(define-syntax-rule (use-system-modules module ...)
+ (use-modules (gnu system module) ...))
+
;;; gnu.scm ends here
--
2.1.0
(use-modules (gnu)
(gnu packages)
(gnu services)
(gnu system)
(guix monads))
(use-package-modules
emacs conkeror ratpoison feh grub gawk perl ncurses aspell fonts
version-control ssh wget video xiph file compression admin linux xorg)
(use-service-modules
base networking ssh dbus xorg)
;;
-------------------------------------------------------------------------------------
(operating-system
(host-name "Guixotic")
(timezone "America/Chicago")
(bootloader (grub-configuration
(device "/dev/sda")))
(file-systems (cons (file-system
(device "/dev/sda1")
(title 'label)
(mount-point "/")
(type "ext4"))
%base-file-systems))
(users (list (user-account
(name "gnuser")
(group "gnuser")
(password "")
(uid 1000)
(supplementary-groups
'("wheel","users","audio","video","dialout"))
(home-directory "/home/gnuser"))))
(groups (cons (user-group
(name "gnuser")
(id 1000))
%base-groups))
(packages (cons* grub
tar gzip bzip2 xz file diffutils gawk perl
ncurses git wget openssh
isc-dhcp wireless-tools wpa-supplicant
xset setxkbmap xkill
aspell aspell-dict-en font-dejavu font-terminus
feh alsa-utils vorbis-tools ffmpeg mplayer
xterm ratpoison conkeror
emacs emms magit geiser paredit
%base-packages))
(services (cons* (dhcp-client-service #:dhcp isc-dhcp)
(dbus-service '())
(slim-service)
%base-services)))