This commit is contained in:
Daniel Ziltener 2023-11-28 23:52:59 +01:00
parent d388221901
commit 37583edcba
Signed by: zilti
GPG Key ID: B38976E82C9DAE42
2 changed files with 91 additions and 81 deletions

View File

@ -5,8 +5,10 @@
;; need to capture the channels being used, as returned by "guix describe".
;; See the "Replicating Guix" section in the manual.
(use-modules (gnu home)
(use-modules
(gnu home)
(gnu packages)
(gnu packages gnupg)
(gnu services)
(guix gexp)
(gnu home services gnupg)
@ -22,7 +24,6 @@
(packages
(specifications->packages
(list pinentry-qt)))
;; Below is the list of Home services. To search for available
;; services, run 'guix home search KEYWORD' in a terminal.
(services
@ -53,13 +54,19 @@
("SSH_ASKPASS" . "ksshaskpass")))
(service home-bash-service-type
(home-bash-configuration
(aliases '(("hh" . "hstr") ("l" . "ls -alh")
(aliases
'(("hh" . "hstr")
("l" . "ls -alh")
("ll" . "ls -l")
("ls" . "ls --color=tty")))
(bashrc (list (local-file
(bashrc
(list
(local-file
"/home/zilti/projects/guixconfig//.bashrc"
"bashrc")))
(bash-profile (list (local-file
(bash-profile
(list
(local-file
"/home/zilti/projects/guixconfig//.bash_profile"
"bash_profile")))))
(service home-dicod-service-type)
@ -67,7 +74,8 @@
(service home-shepherd-service-type)
(service home-mcron-service-type
(home-mcron-configuration
(jobs '())))
(jobs
'())))
(simple-service 'ziltis-channels
home-channels-service-type
(list
@ -77,7 +85,9 @@
(service home-openssh-service-type
(home-openssh-configuration
(hosts
(list (openssh-host (name "gitea.lyrion.ch")
(list
(openssh-host
(name "gitea.lyrion.ch")
(host-name "gitea.lyrion.ch")
(user "git")
(port 7920))))))

View File