diff options
author | Thanos Apollo <[email protected]> | 2023-03-26 14:31:35 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-03-26 14:31:35 +0300 |
commit | 700a7e67cd58e0321facaa61f3f88f007b13145a (patch) | |
tree | b7849ab5ffc128d241ec0edececc152febf583fe /.config/guix/common.scm | |
parent | fbcd6ca6a6508750c55b950f5a151e709bf60fa7 (diff) |
remove stumpwm and guix
Diffstat (limited to '.config/guix/common.scm')
-rwxr-xr-x | .config/guix/common.scm | 66 |
1 files changed, 0 insertions, 66 deletions
diff --git a/.config/guix/common.scm b/.config/guix/common.scm deleted file mode 100755 index 64666d7..0000000 --- a/.config/guix/common.scm +++ /dev/null @@ -1,66 +0,0 @@ -(define-module (common) - #:use-module (gnu) - #:use-module (gnu services) - #:use-module (gnu home) - #:use-module (gnu home services) - #:use-module (gnu home services shells) - #:use-module (gnu home services mcron) - #:use-module (guix gexp)) - -(define-public common-home-services - (list - ;; Set up the shell environment - (service home-bash-service-type - (home-bash-configuration - (bash-profile - `(,(plain-file "bash-profile-extras" - (string-append - ;; Load the Nix profile - "if [ -f /run/current-system/profile/etc/profile.d/nix.sh ]; then\n" - " . /run/current-system/profile/etc/profile.d/nix.sh\n" - "fi\n" - - ;; Don't use the system-level PulseAudio configuration - "unset PULSE_CONFIG\n" - "unset PULSE_CLIENTCONFIG\n")))) - - (environment-variables - '( ;; Sort hidden (dot) files first in `ls` listings - ("LC_COLLATE" . "C") - - ;; Emacs is our editor - ("VISUAL" . "emacsclient") - ("EDITOR" . "emacsclient") - - ;; Add some things to $PATH (maybe integrate into other services?) - ("PATH" . "$HOME/.dotfiles/.bin:$HOME/.npm-global/bin:$PATH") - - ;; Make sure Flatpak apps are visible - ("XDG_DATA_DIRS" . "$XDG_DATA_DIRS:$HOME/.local/share/flatpak/exports/share") - - ;; Make sure JAVA_HOME is set - ;; TODO: Move this to a different service - ("JAVA_HOME" . "$(dirname $(dirname $(readlink $(which java))))") - - ;; Fix issues with Qutebrowser - ;; TODO: Move this to Qutebrowser service - ("QTWEBENGINE_CHROMIUM_FLAGS" . "--disable-seccomp-filter-sandbox") - - ;; Set the SSH authentication socket - ;; TODO: Move to a gpg service - ("SSH_AUTH_SOCK" . "$(gpgconf --list-dirs agent-ssh-socket)"))))) - - ;; Set up desktop environment - - - ;; Start background jobs - (service home-mcron-service-type - (home-mcron-configuration - (jobs - (list - #~(job - '(next-hour (range 0 24 4)) - "~/.dotfiles/.bin/sync-passwords"))))))) - - ;; Udiskie for auto-mounting devices - |