diff options
author | Thanos Apollo <[email protected]> | 2025-03-15 15:46:21 +0200 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2025-03-15 15:52:16 +0200 |
commit | 2515a32f922cee01028a589d79ad4bfdb0dacf8f (patch) | |
tree | 0d4717224d7c07c140a4cb782237cc9c0c6dae80 | |
parent | 2907c221a7dc654f1c31d142a43d39484610e6ff (diff) |
scripts: keyboard-light: Use /sh.
-rwxr-xr-x | .scripts/keyboard-light-x220.sh | 2 | ||||
-rw-r--r-- | guix/home.scm | 14 |
2 files changed, 9 insertions, 7 deletions
diff --git a/.scripts/keyboard-light-x220.sh b/.scripts/keyboard-light-x220.sh index 6aa509b..55d6eeb 100755 --- a/.scripts/keyboard-light-x220.sh +++ b/.scripts/keyboard-light-x220.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/bin/sh STATUS=$(brightnessctl --device "tpacpi::thinklight" | grep "Current brightness") diff --git a/guix/home.scm b/guix/home.scm index 8d24397..906c357 100644 --- a/guix/home.scm +++ b/guix/home.scm @@ -12,8 +12,10 @@ #:use-module (gnu home services desktop) #:use-module (gnu home services gnupg) #:use-module (gnu home services messaging) - #:use-module (hecate packages emacs) - #:use-module (hecate packages hunspell) + #:use-module (gnu home services sound) + #:use-module (gnu home services desktop) + #:use-module (packages emacs) + #:use-module (packages hunspell) #:export (home)) (define thanos/dotfiles-path @@ -24,14 +26,14 @@ "font-fira-code" "font-google-noto-sans-cjk" "font-iosevka")) (define thanos/gpg-cache - (if (string=? (gethostname) "constantine") - 604800 2880)) + (if (string=? (gethostname) "constantine") 21600 + 3600)) (define thanos/emacs-packages '("emacs-next-pgtk" "emacs-nov-el" "emacs-pdf-tools" "emacs-emms" "emacs-geiser" "emacs-geiser-guile" "emacs-notmuch" "emacs-password-store" "emacs-debbugs" "emacs-0x0" "emacs-emojify" "emacs-org-present" "emacs-sudo-edit" - "emacs-magit" "emacs-telega")) + "emacs-magit" "emacs-telega" "emacs-jabber")) (define thanos/python-packages '("python-next" "python-pip" "python-lsp-server" "python-numpy" "python-pyflakes" @@ -45,7 +47,7 @@ "steam" "signal-desktop" "git" "fuzzel" "alacritty" "password-store" "curl" "dino" "bind" "nmap" "hunspell" "wtype" "hunspell-dict-en-med" "mlocate" "rsync" "grimshot" "swayidle" "htop" "librewolf" "brightnessctl" - "net-tools" "gnupg" "stow" "dunst" "libnotify") + "net-tools" "gnupg" "stow" "dunst" "libnotify" "hugo") thanos/emacs-packages thanos/python-packages thanos/fonts-packages))) (services (list (service home-bash-service-type |