.
This commit is contained in:
parent
021a3c5356
commit
223f3ed6b1
5 changed files with 34 additions and 39 deletions
|
@ -1,3 +0,0 @@
|
|||
((scheme-mode . ((geiser-scheme-implementation . 'guile)))
|
||||
(org-mode . ((geiser-scheme-implementation . 'guile)
|
||||
(org-confirm-babel-evaluate . nil))))
|
3
.dir-locals.el
Normal file
3
.dir-locals.el
Normal file
|
@ -0,0 +1,3 @@
|
|||
((nil . ((geiser-scheme-implementation . guile)
|
||||
(geiser-guile-binary . ("guix" "repl"))))
|
||||
(org-mode . ((org-confirm-babel-evaluate . nil))))
|
|
@ -1,4 +1,3 @@
|
|||
# -*- geiser-scheme-implementation: guile -*-
|
||||
#+TITLE: GUIX System Configuration
|
||||
#+AUTHOR: Daniel Ziltener
|
||||
#+PROPERTY: scheme-implementation guile
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
grab
|
||||
pinentry-program /home/zilti/.guix-home/profile/bin/pinentry-qt
|
||||
allow-emacs-pinentry
|
||||
allow-loopback-pinentry
|
|
@ -14,9 +14,9 @@
|
|||
(gnu home)
|
||||
(gnu home services)
|
||||
(gnu home services desktop)
|
||||
#;(gnu home services gnupg)
|
||||
(gnu home services gnupg)
|
||||
(gnu home services guix)
|
||||
#;(gnu home services mail)
|
||||
(gnu home services mail)
|
||||
(gnu home services mcron)
|
||||
(gnu home services pm)
|
||||
(gnu home services shells)
|
||||
|
@ -58,25 +58,25 @@
|
|||
(services
|
||||
(list
|
||||
(service home-shepherd-service-type)
|
||||
#;(service home-msmtp-service-type
|
||||
(home-msmtp-configuration ;
|
||||
(accounts ;
|
||||
(list ;
|
||||
(msmtp-account ;
|
||||
(name "LMail") ;
|
||||
(configuration ;
|
||||
(msmtp-configuration ;
|
||||
(host "lyrion.ch") ;
|
||||
(port 587) ;
|
||||
(user "dziltener") ;
|
||||
(password-eval "pass Privat/Mailaccount | head -n 1")))) ;
|
||||
(msmtp-account ;
|
||||
(name "Red Sky") ;
|
||||
(configuration ;
|
||||
(msmtp-configuration ;
|
||||
(host "gmail.com") ;
|
||||
(port 587) ;
|
||||
(user "dz@redsky.io") ;
|
||||
(service home-msmtp-service-type
|
||||
(home-msmtp-configuration
|
||||
(accounts
|
||||
(list
|
||||
(msmtp-account
|
||||
(name "LMail")
|
||||
(configuration
|
||||
(msmtp-configuration
|
||||
(host "lyrion.ch")
|
||||
(port 587)
|
||||
(user "dziltener")
|
||||
(password-eval "pass Privat/Mailaccount | head -n 1"))))
|
||||
(msmtp-account
|
||||
(name "Red Sky")
|
||||
(configuration
|
||||
(msmtp-configuration
|
||||
(host "gmail.com")
|
||||
(port 587)
|
||||
(user "dz@redsky.io")
|
||||
(password-eval "pass Privat/RedSkyGMail"))))))))
|
||||
(simple-service 'ziltis-environment-variable-service
|
||||
home-environment-variables-service-type
|
||||
|
@ -93,7 +93,7 @@
|
|||
("CHICKEN_INSTALL_PREFIX" . "$HOME/.local")))
|
||||
(simple-service 'ziltis-home-files-service
|
||||
home-files-service-type
|
||||
`((".gnupg/gpg-agent.conf" ,(local-file "gnupg/gpg-agent.conf"))))
|
||||
`(#;(".gnupg/gpg-agent.conf" ,(local-file "gnupg/gpg-agent.conf"))))
|
||||
(simple-service 'ziltis-xdg-configuration-files-service
|
||||
home-xdg-configuration-files-service-type
|
||||
`(("sway/config" ,(local-file "./sway/sway"))
|
||||
|
@ -152,13 +152,13 @@
|
|||
(user "git")
|
||||
(port 7920)
|
||||
(identity-file "~/.ssh/personal_ed"))))))
|
||||
#;(service home-gpg-agent-service-type
|
||||
(home-gpg-agent-configuration ;
|
||||
(pinentry-program ;
|
||||
(file-append pinentry-qt "/bin/pinentry-qt")) ;
|
||||
(ssh-support? #t) ;
|
||||
(default-cache-ttl 7200) ;
|
||||
(default-cache-ttl-ssh 7200) ;
|
||||
(extra-content "allow-emacs-pinentry\nallow-loopback-pinentry")))
|
||||
(service home-gpg-agent-service-type
|
||||
(home-gpg-agent-configuration
|
||||
(pinentry-program
|
||||
(file-append pinentry-qt "/bin/pinentry-qt"))
|
||||
(ssh-support? #t)
|
||||
(default-cache-ttl 7200)
|
||||
(default-cache-ttl-ssh 7200)
|
||||
(extra-content "grab\nallow-emacs-pinentry\nallow-loopback-pinentry")))
|
||||
(service home-dbus-service-type)
|
||||
)))
|
||||
|
|
Loading…
Reference in a new issue