rekahsoft
/
guix-config
Archived
1
1
Fork 0

Initial WIP guix configuration

Signed-off-by: Collin J. Doering <collin@rekahsoft.ca>
This commit is contained in:
Collin J. Doering 2019-01-29 13:07:31 -05:00
parent 72c1acd0f0
commit 414b1f434e
Signed by: rekahsoft
GPG Key ID: 7B4DEB93212B3022
1 changed files with 76 additions and 0 deletions

76
config.scm Normal file
View File

@ -0,0 +1,76 @@
;; Guixsd System Wide Configuration
(use-modules (gnu)
(gnu system nss))
(use-service-modules desktop docker)
(use-package-modules admin
bootloaders
certs
curl
docker
emacs
engineering
guile
package-management
pdf
python-web
ratpoison
shells
suckless
terminals
tmux
version-control
virtualization
wm
wm)
(operating-system
(host-name "antelope")
(timezone "America/Toronto")
(locale "en_US.utf8")
(bootloader (bootloader-configuration
(bootloader grub-bootloader)
(target "/dev/sda")))
(file-systems (cons* (file-system
(device (uuid "a0a2ee18-9a8d-4bd5-995f-361aaa4d220e" 'ext4))
(mount-point "/")
(type "ext4"))
%base-file-systems))
(users (cons (user-account
(name "collin")
(comment "Master user")
(group "users")
(supplementary-groups '("wheel" "docker" "netdev"
"audio" "video"))
(home-directory "/home/collin")
(shell #~(string-append #$zsh "/bin/zsh")))
%base-user-accounts))
(packages (cons* ratpoison dmenu
nss-certs
emacs
zsh tmux kitty
docker docker-cli docker-compose
kicad kicad-symbols kicad-library
;; Broken:
;; skopeo
;; Missing:
;; exa bat gtkwave terraform
curl
ansible awscli
guile-readline
zathura zathura-pdf-poppler zathura-ps zathura-djvu
stow git
xmonad xmobar
%base-packages))
;; Use the "desktop" services, which include the X11
;; log-in service, networking with NetworkManager, and more.
(services (cons* (service docker-service-type)
%desktop-services))
;; Allow resolution of '.local' host names with mDNS.
(name-service-switch %mdns-host-lookup-nss))