From b36934f19c62430195278316b5e7ac7b2e66572a Mon Sep 17 00:00:00 2001 From: bd Date: Wed, 27 Dec 2023 17:54:41 -0700 Subject: Functional home configuration --- src/guix-config/home-configuration.scm | 14 +++++++++----- 1 file changed, 9 insertions(+), 5 deletions(-) (limited to 'src/guix-config/home-configuration.scm') diff --git a/src/guix-config/home-configuration.scm b/src/guix-config/home-configuration.scm index 344df88..d817f36 100644 --- a/src/guix-config/home-configuration.scm +++ b/src/guix-config/home-configuration.scm @@ -13,7 +13,8 @@ (home-environment ;; Below is the list of packages that will show up in your ;; Home profile, under ~/.guix-home/profile. - (packages (specifications->packages (list "xset"))) + (packages (specifications->packages (list "netcat" "password-store" "dmenu" + "xset"))) ;; Below is the list of Home services. To search for available ;; services, run 'guix home search KEYWORD' in a terminal. @@ -22,14 +23,17 @@ (home-bash-configuration (aliases '(("c" . "clear") ("cp" . "cp -i") ("grep" . "grep --color=auto") + ("ip" . "ip -color=auto") ("ll" . "ls -l") ("ls" . "ls -p --color=auto") ("mkd" . "mkdir -pv") ("mv" . "mv -i") ("rm" . "rm -i") - ("vi" . "vim") + ("vi" . "vim") ("ytta" . "yt-dlp --paths /home/bdunahu/Media/Audio --extract-audio --format bestaudio/best") ("yttv" . "yt-dlp --paths /home/bdunahu/Media/Videos -f b"))) - (bashrc (list (local-file - "/home/bdunahu/src/guix-config//.bashrc" - "bashrc"))))) + (bashrc (list (local-file "src/guix-config//.bashrc" + "bashrc"))) + (bash-profile (list (local-file + "src/guix-config//.bash_profile" + "bash_profile")))))))) -- cgit v1.2.3