diff --git a/.bash_logout b/.bash_logout deleted file mode 100644 index af7c6fd..0000000 --- a/.bash_logout +++ /dev/null @@ -1,2 +0,0 @@ -# ~/.bash_logout - diff --git a/.bash_profile b/.bash_profile deleted file mode 100644 index baaaa32..0000000 --- a/.bash_profile +++ /dev/null @@ -1,8 +0,0 @@ -# .bash_profile - -# Get the aliases and functions -if [ -f ~/.bashrc ]; then - . ~/.bashrc -fi - -# User specific environment and startup programs diff --git a/.bashrc b/.bashrc deleted file mode 100644 index 6f6ae74..0000000 --- a/.bashrc +++ /dev/null @@ -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 - diff --git a/home-configuration.scm b/home-configuration.scm index d736609..d1bba0b 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -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")