nix: Make nix the root
Which means now I'll have to think about real prefixes in commit names.
This commit is contained in:
parent
550eed06e0
commit
ee178b7d57
190 changed files with 5 additions and 6 deletions
1
unprocessed/config/systemd/user/.gitignore
vendored
Normal file
1
unprocessed/config/systemd/user/.gitignore
vendored
Normal file
|
@ -0,0 +1 @@
|
|||
*.wants/*
|
10
unprocessed/config/systemd/user/ipfs.service
Normal file
10
unprocessed/config/systemd/user/ipfs.service
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Unit]
|
||||
Description=IPFS daemon
|
||||
After=network.target
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/ipfs daemon
|
||||
Restart=on-failure
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
6
unprocessed/config/systemd/user/melfetch.service
Normal file
6
unprocessed/config/systemd/user/melfetch.service
Normal file
|
@ -0,0 +1,6 @@
|
|||
[Unit]
|
||||
Description=Meh mail client new mail fetcher
|
||||
|
||||
[Service]
|
||||
Type=oneshot
|
||||
ExecStart=/home/geoffrey/.config/scripts/mel fetch
|
10
unprocessed/config/systemd/user/melfetch.timer
Normal file
10
unprocessed/config/systemd/user/melfetch.timer
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Unit]
|
||||
Description=Meh mail client fetcher timer
|
||||
|
||||
[Timer]
|
||||
OnBootSec=2m
|
||||
OnUnitActiveSec=5m
|
||||
Unit=melfetch.service
|
||||
|
||||
[Install]
|
||||
WantedBy=timers.target
|
10
unprocessed/config/systemd/user/urxvtd.service
Normal file
10
unprocessed/config/systemd/user/urxvtd.service
Normal file
|
@ -0,0 +1,10 @@
|
|||
[Unit]
|
||||
Description=Urxvt Terminal Daemon
|
||||
Requires=urxvtd.socket
|
||||
|
||||
[Service]
|
||||
ExecStart=/usr/bin/urxvtd -o -q
|
||||
Environment=RXVT_SOCKET=%t/urxvtd-%H
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
9
unprocessed/config/systemd/user/urxvtd.socket
Normal file
9
unprocessed/config/systemd/user/urxvtd.socket
Normal file
|
@ -0,0 +1,9 @@
|
|||
[Unit]
|
||||
Description=urxvt daemon (socket activation)
|
||||
Documentation=man:urxvtd(1) man:urxvt(1)
|
||||
|
||||
[Socket]
|
||||
ListenStream=%t/urxvtd-%H
|
||||
|
||||
[Install]
|
||||
WantedBy=sockets.target
|
13
unprocessed/config/systemd/user/x0vncserver.service
Normal file
13
unprocessed/config/systemd/user/x0vncserver.service
Normal file
|
@ -0,0 +1,13 @@
|
|||
[Unit]
|
||||
Description=Remote desktop service (VNC)
|
||||
|
||||
[Service]
|
||||
Type=simple
|
||||
# wait for Xorg started by ${USER}
|
||||
ExecStartPre=/bin/sh -c 'while ! pgrep -U "$USER" Xorg; do sleep 2; done'
|
||||
ExecStart=/usr/bin/x0vncserver -rfbauth /home/${USER}/.vnc/passwd
|
||||
# or login with your username & password
|
||||
#ExecStart=/usr/bin/x0vncserver -PAMService=login -PlainUsers=${USER} -SecurityTypes=TLSPlain
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
Loading…
Add table
Add a link
Reference in a new issue