diff options
-rw-r--r-- | config.scm | 31 |
1 files changed, 19 insertions, 12 deletions
@@ -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) |