Initialze repository
This commit is contained in:
commit
34f4d58e3e
7 changed files with 232 additions and 0 deletions
30
home/old.scm
Normal file
30
home/old.scm
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
(use-modules (gnu home)
|
||||
(gnu packages)
|
||||
(gnu services)
|
||||
(guix gexp)
|
||||
(gnu home services shells))
|
||||
|
||||
(home-environment
|
||||
|
||||
(packages (specifications->packages (list "nss-certs" "git"
|
||||
"gcc-toolchain@14" "helix")))
|
||||
|
||||
(services (append
|
||||
(list (service home-bash-service-type
|
||||
(home-bash-configuration
|
||||
(aliases '(("grep" . "grep --color=auto")
|
||||
("la" . "ls -lah --color=auto")
|
||||
("ll" . "ls -l")
|
||||
("ls" . "ls -p --color=auto")))
|
||||
(bashrc (list (local-file
|
||||
"/home/muon/src/guix-config//.bashrc"
|
||||
"bashrc")))
|
||||
(bash-profile (list (local-file
|
||||
"/home/muon/src/guix-config//.bash_profile"
|
||||
"bash_profile"))))))
|
||||
(list
|
||||
(simple-service 'my-env-vars home-environment-variables-service-type
|
||||
`(("SSL_CERT_DIR" . "$HOME/.guix-profile/etc/ssl/certs")
|
||||
("SSL_CERT_FILE" . "$HOME/.guix-profile/etc/ssl/certs/ca-certificates.crt")
|
||||
("GIT_SSL_CAINFO" . "$SSL_CERT_FILE")))))
|
||||
%base-home-services)))
|
||||
Loading…
Add table
Add a link
Reference in a new issue