summary refs log tree commit diff
diff options
context:
space:
mode:
authorFranck Cuny <franck@fcuny.net>2020-10-01 17:57:30 -0700
committerFranck Cuny <franck@fcuny.net>2020-10-01 17:57:30 -0700
commitf4945e0e12e529182f362dfe417455148ae58e51 (patch)
treecd4f30398b8fbaf0e378da45b0416768c3ce4aa3
parent[desktop] adjust configuration for i3 (diff)
downloademacs.d-f4945e0e12e529182f362dfe417455148ae58e51.tar.gz
[desktop] more configuration files for linux
Add configuration for the ssh-agent, pam and XDG.
-rw-r--r--config/systemd/user/ssh-agent.service12
-rw-r--r--config/user-dirs.dirs7
-rw-r--r--pam_environment1
3 files changed, 20 insertions, 0 deletions
diff --git a/config/systemd/user/ssh-agent.service b/config/systemd/user/ssh-agent.service
new file mode 100644
index 0000000..5c59cbf
--- /dev/null
+++ b/config/systemd/user/ssh-agent.service
@@ -0,0 +1,12 @@
+[Unit]
+Description=SSH key agent
+
+[Service]
+Type=simple
+Environment=SSH_AUTH_SOCK=%t/ssh-agent.socket
+# DISPLAY required for ssh-askpass to work
+Environment=DISPLAY=:0
+ExecStart=/usr/bin/ssh-agent -D -a $SSH_AUTH_SOCK
+
+[Install]
+WantedBy=default.target
diff --git a/config/user-dirs.dirs b/config/user-dirs.dirs
new file mode 100644
index 0000000..467aa74
--- /dev/null
+++ b/config/user-dirs.dirs
@@ -0,0 +1,7 @@
+XDG_DESKTOP_DIR="$HOME/documents"
+XDG_DOCUMENTS_DIR="$HOME/documents"
+XDG_DOWNLOAD_DIR="$HOME/downloads"
+XDG_MUSIC_DIR="$HOME/media/music"
+XDG_PICTURES_DIR="$HOME/media/pictures"
+XDG_PUBLICSHARE_DIR="$HOME/documents"
+XDG_VIDEOS_DIR="$HOME/media/videos"
diff --git a/pam_environment b/pam_environment
new file mode 100644
index 0000000..3bd1a97
--- /dev/null
+++ b/pam_environment
@@ -0,0 +1 @@
+SSH_AUTH_SOCK DEFAULT="${XDG_RUNTIME_DIR}/ssh-agent.socket"