summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEkaitz Zarraga <ekaitz@elenq.tech>2021-01-14 17:19:25 +0100
committerEkaitz Zarraga <ekaitz@elenq.tech>2021-01-14 17:19:25 +0100
commitb65d65dc4b9e341f92b54fde292ba8d8ada63cb8 (patch)
tree7b725f2c29997584f5a435cb1e9bb2e9314a9a2d
parent180888317f6cffcd515a760c4d6f73b196a89e14 (diff)
Use raw packages instead of specification->package
-rw-r--r--config.scm31
1 files changed, 19 insertions, 12 deletions
diff --git a/config.scm b/config.scm
index d969c8a..114a19e 100644
--- a/config.scm
+++ b/config.scm
@@ -3,7 +3,14 @@
(use-modules (gnu)
(srfi srfi-1)
((gnu packages linux) #:prefix gnu-linux:)
+ (gnu packages admin)
+ (gnu packages certs)
+ (gnu packages ssh)
+ (gnu packages vim)
+ (gnu packages wm)
+ (gnu packages wget)
(gnu packages xdisorg)
+ (gnu packages xorg)
(tuxedo-keyboard)
(nongnu packages linux)
(nongnu system linux-initrd))
@@ -68,18 +75,18 @@
'("wheel" "netdev" "audio" "video" "lp" "dialout")))
%base-user-accounts))
(packages
- (append
- (map specification->package
- '("htop"
- "light"
- "i3-wm"
- "neovim"
- "nss-certs"
- "tree"
- "wget"
- "tcpdump"
- "openssh"
- "xf86-input-wacom"))
+ (cons*
+ htop
+ gnu-linux:light
+ i3-wm
+ neovim
+ nss-certs
+ tree
+ wget
+ tcpdump
+ openssh
+ xf86-video-intel
+ xf86-input-wacom
%base-packages))
(services (cons* (udev-rules-service 'light gnu-linux:light)