Initial WIP guix configuration
Signed-off-by: Collin J. Doering <collin@rekahsoft.ca>
This commit is contained in:
parent
72c1acd0f0
commit
414b1f434e
76
config.scm
Normal file
76
config.scm
Normal 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))
|
Reference in New Issue
Block a user