diff options
Diffstat (limited to 'src/guix-config/home-configuration.scm')
-rw-r--r-- | src/guix-config/home-configuration.scm | 14 |
1 files changed, 9 insertions, 5 deletions
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")))))))) |