diff options
Diffstat (limited to 'guix')
-rw-r--r-- | guix/home.scm | 27 |
1 files changed, 10 insertions, 17 deletions
diff --git a/guix/home.scm b/guix/home.scm index 97c146b..1fac83c 100644 --- a/guix/home.scm +++ b/guix/home.scm @@ -22,21 +22,21 @@ (define thanos/emacs-packages '("emacs-pgtk" "emacs-nov-el" "emacs-pdf-tools" "emacs-elpy" - "emacs-geiser" "emacs-geiser-guile" "emacs-vterm" "emacs-jabber")) + "emacs-geiser" "emacs-geiser-guile" "emacs-vterm" "emacs-jabber" + "emacs-yeetube")) (home-environment ;; Below is the list of packages that will show up in your ;; Home profile, under ~/.guix-home/profile. (packages (specifications->packages - (append (list "anki" "torbrowser" "mu" "perl" "tree" "iptables" + (append (list "torbrowser" "mu" "perl" "tree" "iptables" "syncthing" "hyfetch" "font-iosevka-aile" "font-jetbrains-mono" - "syncthing" "ungoogled-chromium" "transmission" "isync" - "mpv" "yt-dlp" "librewolf" "dino" "0ad" "git" "torbrowser" - "fuzzel" "wl-clipboard" "alacritty" "wtype" "password-store" - "curl" "bind" "nmap" "hunspell" "guile-syntax-highlight" "sbcl" - "hunspell-dict-en-us" "mlocate" "rsync" "grimshot" "nyxt" "haunt" - "texlive" "texlive-cbfonts" "network-manager-applet" "swayidle" - "wl-clipboard" "btop" "hugo-bin" "net-tools" "gnupg") + "transmission" "isync" "mpv" "yt-dlp" "librewolf" + "dino" "git" "fuzzel" "wl-clipboard" "alacritty" "wtype" + "password-store" "curl" "bind" "nmap" "hunspell" "sbcl" + "hunspell-dict-en-us" "mlocate" "rsync" "grimshot" "nyxt" + "texlive-cbfonts" "swayidle" "wl-clipboard" "btop" + "net-tools" "gnupg" "hugo-bin" "texlive") thanos/emacs-packages))) ;; Below is the list of Home services. To search for available ;; services, run 'guix home search KEYWORD' in a terminal. @@ -44,14 +44,7 @@ (list (service home-bash-service-type (home-bash-configuration (guix-defaults? #t) - (aliases '(("ga" . "git add") - ("gaa" . "git add .") - ("gc" . "git commit -m") - ("gp" . "git push -u origin") - ("gpm" . "git push -u origin master") - ("grep" . "grep --color=auto") - ("gs" . "git status") - ("klight" . "brightnessctl --device='\\''tpacpi::kbd_backlight'\\'' set 1") + (aliases '(("klight" . "brightnessctl --device='\\''tpacpi::kbd_backlight'\\'' set 1") ("ll" . "ls -lah --color") ("logout" . "pkill -U $USER") ("ls" . "ls --color") |