1
0
Fork 0

Remove bash references

main
Ethan Reece 2024-07-15 08:26:59 -05:00
parent 822c45a8e6
commit f9183383e3
Signed by: me
GPG Key ID: 198E9EB433DB1B28
4 changed files with 1 additions and 78 deletions

View File

@ -1,2 +0,0 @@
# ~/.bash_logout

View File

@ -1,8 +0,0 @@
# .bash_profile
# Get the aliases and functions
if [ -f ~/.bashrc ]; then
. ~/.bashrc
fi
# User specific environment and startup programs

33
.bashrc
View File

@ -1,33 +0,0 @@
# .bashrc
# Source global definitions
if [ -f /etc/bashrc ]; then
. /etc/bashrc
fi
# User specific environment
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]; then
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
fi
export PATH
# Uncomment the following line if you don't like systemctl's auto-paging feature:
# export SYSTEMD_PAGER=
# User specific aliases and functions
if [ -d ~/.bashrc.d ]; then
for rc in ~/.bashrc.d/*; do
if [ -f "$rc" ]; then
. "$rc"
fi
done
fi
unset rc
# Automatically added by the Guix install script.
if [ -n "$GUIX_ENVIRONMENT" ]; then
if [[ $PS1 =~ (.*)"\\$" ]]; then
PS1="${BASH_REMATCH[1]} [env]\\\$ "
fi
fi

View File

@ -1,9 +1,3 @@
;; This "home-environment" file can be passed to 'guix home reconfigure'
;; to reproduce the content of your profile. This is "symbolic": it only
;; specifies package names. To reproduce the exact same profile, you also
;; need to capture the channels being used, as returned by "guix describe".
;; See the "Replicating Guix" section in the manual.
(use-modules (gnu home)
(gnu packages)
(gnu services)
@ -16,8 +10,6 @@
(gnu home services gnupg))
(home-environment
;; Below is the list of packages that will show up in your
;; Home profile, under ~/.guix-home/profile.
(packages (specifications->packages (list "emacs-guix"
"emacs-geiser-guile"
"emacs-geiser"
@ -73,34 +65,8 @@
"neovim"
"nushell")))
;; Below is the list of Home services. To search for available
;; services, run 'guix home search KEYWORD' in a terminal.
(services
(list ;(service home-bash-service-type
; (home-bash-configuration
; (aliases '(("egrep" . "grep -E --color=auto")
; ("fgrep" . "grep -F --color=auto")
; ("grep" . "grep --color=auto")
; ("l." . "ls -d .* --color=auto")
; ("ll" . "ls -l --color=auto")
; ("ls" . "ls --color=auto")
; ("which" . "(alias; declare -f) | /usr/bin/which --tty-only --read-alias --read-functions --show-tilde --show-dot")
; ("xzegrep" . "xzegrep --color=auto")
; ("xzfgrep" . "xzfgrep --color=auto")
; ("xzgrep" . "xzgrep --color=auto")
; ("zegrep" . "zegrep --color=auto")
; ("zfgrep" . "zfgrep --color=auto")
; ("zgrep" . "zgrep --color=auto")))
; (bashrc (list (local-file
; "/home/sudoer777/src/guix-config/.bashrc"
; "bashrc")))
; (bash-profile (list (local-file
; "/home/sudoer777/src/guix-config/.bash_profile"
; "bash_profile")))
; (bash-logout (list (local-file
; "/home/sudoer777/src/guix-config/.bash_logout"
; "bash_logout")))))
(service home-channels-service-type
(list (service home-channels-service-type
(list (channel
(name 'guix)
(url "https://git.savannah.gnu.org/git/guix.git")