.
This commit is contained in:
parent
90a0ca3dad
commit
6a54a7bba3
5 changed files with 72 additions and 2 deletions
|
@ -28,7 +28,7 @@
|
||||||
(require 'cl-macs)
|
(require 'cl-macs)
|
||||||
|
|
||||||
;;;; Early Variables
|
;;;; Early Variables
|
||||||
(setq custom-file "~/.emacs.d/custom.el")
|
(setq custom-file "~/.config/emacs/custom.el")
|
||||||
(when (file-exists-p custom-file)
|
(when (file-exists-p custom-file)
|
||||||
(load custom-file))
|
(load custom-file))
|
||||||
|
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
(goto-char (point-max))
|
(goto-char (point-max))
|
||||||
(eval-print-last-sexp)))
|
(eval-print-last-sexp)))
|
||||||
(load bootstrap-file nil 'nomessage))
|
(load bootstrap-file nil 'nomessage))
|
||||||
;;(setq straight-use-package-by-default t)
|
(setq straight-use-package-by-default t)
|
||||||
|
|
||||||
;;;; Package Management Configuration
|
;;;; Package Management Configuration
|
||||||
;; See: https://github.com/radian-software/el-patch
|
;; See: https://github.com/radian-software/el-patch
|
||||||
|
|
36
home/git/.gitconfig
Normal file
36
home/git/.gitconfig
Normal file
|
@ -0,0 +1,36 @@
|
||||||
|
# Das ist Git's benutzerspezifische Konfigurationsdatei.
|
||||||
|
[user]
|
||||||
|
# Bitte passen Sie die folgenden Zeilen an und kommentieren Sie diese aus:
|
||||||
|
name = Daniel Ziltener
|
||||||
|
email = dziltener@lyrion.ch
|
||||||
|
signingkey = 37F655BAF43BC0FF300A91A1B38976E82C9DAE42
|
||||||
|
|
||||||
|
[sendemail]
|
||||||
|
smtpserver = lyrion.ch
|
||||||
|
smtpuser = dziltener
|
||||||
|
smtpencryption = starttls
|
||||||
|
smtpserverport = 465
|
||||||
|
|
||||||
|
[rebase]
|
||||||
|
autoStash = true
|
||||||
|
|
||||||
|
[pull]
|
||||||
|
rebase = true
|
||||||
|
[gui]
|
||||||
|
recentrepo = /home/zilti/projects/crawler-vacancies
|
||||||
|
[gitlab]
|
||||||
|
user = zilti
|
||||||
|
oauth-token = zA4CYqcCcV5oN7N-2Qsn
|
||||||
|
[cola]
|
||||||
|
spellcheck = false
|
||||||
|
[init]
|
||||||
|
defaultBranch = master
|
||||||
|
|
||||||
|
[safe]
|
||||||
|
directory = /home/zilti/.local/share/hyprload/hyprland
|
||||||
|
directory = /opt/nixconfig/
|
||||||
|
directory = /opt/nixconfig
|
||||||
|
[github]
|
||||||
|
user = dziltener@lyrion.ch
|
||||||
|
[commit]
|
||||||
|
gpgsign = true
|
|
@ -32,6 +32,7 @@
|
||||||
(list "chicken"
|
(list "chicken"
|
||||||
"fuzzel"
|
"fuzzel"
|
||||||
"gammastep"
|
"gammastep"
|
||||||
|
"glibc-locales"
|
||||||
"icecat"
|
"icecat"
|
||||||
"kitty"
|
"kitty"
|
||||||
"pinentry-qt"
|
"pinentry-qt"
|
||||||
|
|
7
home/kitty/kitty.conf
Normal file
7
home/kitty/kitty.conf
Normal file
|
@ -0,0 +1,7 @@
|
||||||
|
font_family VictorMono Nerd Font Mono
|
||||||
|
font_size 10
|
||||||
|
background_opacity 0.85
|
||||||
|
kitty_mod ctrl+shift
|
||||||
|
enabled_layouts horizontal
|
||||||
|
map kitty_mod+enter new_window
|
||||||
|
|
26
install-guix-on-void.bash
Normal file
26
install-guix-on-void.bash
Normal file
|
@ -0,0 +1,26 @@
|
||||||
|
#!/usr/local/env bash
|
||||||
|
sudo xbps-install -SuA wget curl
|
||||||
|
curl https://git.savannah.gnu.org/cgit/guix.git/plain/etc/guix-install.sh | sudo bash
|
||||||
|
|
||||||
|
sudo mkdir -p /etc/sv/guix-daemon/log
|
||||||
|
sudo cat <<'EOF' > /etc/sv/guix-daemon/run
|
||||||
|
#!/bin/sh
|
||||||
|
exec 2>&1
|
||||||
|
exec ~root/.config/guix/current/bin/guix-daemon --build-users-group=guixbuild
|
||||||
|
EOF
|
||||||
|
sudo chmod +x /etc/sv/guix-daemon/run
|
||||||
|
|
||||||
|
sudo cat <<EOF > /etc/sv/guix-daemon/log/run
|
||||||
|
#!/bin/sh
|
||||||
|
exec vlogger -t guix-daemon -p daemon
|
||||||
|
EOF
|
||||||
|
sudo chmod +x /etc/sv/guix-daemon/log/run
|
||||||
|
|
||||||
|
sudo ln -sf /etc/sv/guix-daemon /var/service/
|
||||||
|
|
||||||
|
sudo cat <<'EOF' >> ~/.profile
|
||||||
|
GUIX_PROFILE="/home/zilti/.config/guix/current"
|
||||||
|
. "$GUIX_PROFILE/etc/profile"
|
||||||
|
EOF
|
||||||
|
|
||||||
|
guix pull
|
Loading…
Reference in a new issue