diff --git a/home-configuration.scm b/home-configuration.scm index cd4a49e..b34f60b 100644 --- a/home-configuration.scm +++ b/home-configuration.scm @@ -11,21 +11,24 @@ (gnu home services shells)) (home-environment - ;; Below is the list of packages that will show up in your - ;; Home profile, under ~/.guix-home/profile. - (packages (specifications->packages (list "make" "emacs" "git"))) + ;; Below is the list of packages that will show up in your + ;; Home profile, under ~/.guix-home/profile. + (packages + (specifications->packages + (list "make" "git" "ripgrep" "fd" + "emacs-pgtk" "nyxt"))) - ;; 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 '(("eza" . "eza --icons --git --octal-permissions") - ("gsa" . "git-sync-all") - ("ls" . "eza") - ("la" . "eza -a") - ("ll" . "eza -l") - ("lla" . "eza -la") - ("lt" . "eza --tree"))))) - (service home-zsh-service-type - (home-zsh-configuration))))) + ;; 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 '(("eza" . "eza --icons --git --octal-permissions") + ("gsa" . "git-sync-all") + ("ls" . "eza") + ("la" . "eza -a") + ("ll" . "eza -l") + ("lla" . "eza -la") + ("lt" . "eza --tree"))))) + (service home-zsh-service-type + (home-zsh-configuration))))) diff --git a/system-configuration.scm b/system-configuration.scm index 97b996c..bd75315 100644 --- a/system-configuration.scm +++ b/system-configuration.scm @@ -40,7 +40,6 @@ (specification->package "rofi") (specification->package "alacritty") (specification->package "zsh") - ;; (specification->package "nss-certs") ) %base-packages))