rekahsoft
/
guix-config
Archived
1
1
Fork 0
This repository has been archived on 2021-03-07. You can view files and clone it, but cannot push or open issues or pull requests.
guix-config/config.scm

74 lines
2.3 KiB
Scheme

;; Guixsd System Wide Configuration
(use-modules (gnu)
(gnu system nss))
(use-service-modules desktop docker)
(use-package-modules admin bootloaders certs curl databases docker
emacs emacs-xyz engineering file fonts fontutils gnuzilla
guile graphviz golang image image-viewers
networking mpd package-management pdf pulseaudio
python-web ratpoison ruby rust scheme shells shellutils
ssh suckless terminals tmux version-control virtualization 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
recutils
file
emacs emacs-guix emacs-magit emacs-geiser
zsh direnv tmux kitty
docker docker-cli docker-compose
kicad kicad-symbols kicad-library
;; Broken:
;; skopeo
;; Missing:
;; exa bat terraform fzf
;; ghdl gtkwave
feh imlib2
font-gnu-freefont-ttf
mpd ncmpcpp
aircrack-ng
pulseaudio pulsemixer
icecat fontconfig
curl openssh
ansible awscli
rust go ruby
racket guile-readline
graphviz
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))