guix-config/home/old.scm
2025-07-30 22:13:52 +00:00

30 lines
1.4 KiB
Scheme

(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)))