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