Add some guix config.
This commit is contained in:
parent
f9c34120b0
commit
fc70897590
3 changed files with 130 additions and 0 deletions
28
guix/guix-home-config.scm
Executable file
28
guix/guix-home-config.scm
Executable file
|
@ -0,0 +1,28 @@
|
|||
;; This is a sample Guix Home configuration which can help setup your
|
||||
;; home directory in the same declarative manner as Guix System.
|
||||
;; For more information, see the Home Configuration section of the manual.
|
||||
(define-module (guix-home-config)
|
||||
#:use-module (gnu home)
|
||||
#:use-module (gnu home services)
|
||||
#:use-module (gnu home services shells)
|
||||
#:use-module (gnu services)
|
||||
#:use-module (gnu system shadow))
|
||||
|
||||
(define home-config
|
||||
(home-environment
|
||||
(services
|
||||
(list
|
||||
;; Uncomment the shell you wish to use for your user:
|
||||
;(service home-bash-service-type)
|
||||
;(service home-fish-service-type)
|
||||
;(service home-zsh-service-type)
|
||||
|
||||
(service home-files-service-type
|
||||
`((".guile" ,%default-dotguile)
|
||||
(".Xdefaults" ,%default-xdefaults)))
|
||||
|
||||
(service home-xdg-configuration-files-service-type
|
||||
`(("gdb/gdbinit" ,%default-gdbinit)
|
||||
("nano/nanorc" ,%default-nanorc)))))))
|
||||
|
||||
home-config
|
Loading…
Add table
Add a link
Reference in a new issue