add start of config
This commit is contained in:
parent
8711edfe42
commit
807a30cabc
1 changed files with 34 additions and 0 deletions
34
guix/home-configuration.scm
Normal file
34
guix/home-configuration.scm
Normal file
|
@ -0,0 +1,34 @@
|
|||
;; This "home-environment" file can be passed to 'guix home reconfigure'
|
||||
;; to reproduce the content of your profile. This is "symbolic": it only
|
||||
;; specifies package names. To reproduce the exact same profile, you also
|
||||
;; need to capture the channels being used, as returned by "guix describe".
|
||||
;; See the "Replicating Guix" section in the manual.
|
||||
|
||||
(use-modules
|
||||
(gnu home)
|
||||
(gnu packages)
|
||||
(gnu services)
|
||||
(guix gexp)
|
||||
(gnu home services shells)
|
||||
(gnu home)
|
||||
(gnu home services)
|
||||
(gnu home services shells)
|
||||
(gnu home-services version-control)
|
||||
|
||||
)
|
||||
|
||||
(home-environment
|
||||
(packages
|
||||
(map (compose list specification->package+output)
|
||||
(list)))
|
||||
(services
|
||||
(list (service home-bash-service-type)
|
||||
|
||||
|
||||
(service home-git-service-type
|
||||
(home-git-configuration
|
||||
(config
|
||||
`((user
|
||||
((name . "Cyryl Płotnicki")
|
||||
(email . "cyplo@cyplo.dev")
|
||||
)))))))))
|
Loading…
Reference in a new issue