forked from lrvick/dotfiles
Compare commits
No commits in common. "64eed8f4e84c9bbadbe45099b9b10f6325426878" and "3f53f9071cdedc8a4164ec301829d220f2b24208" have entirely different histories.
64eed8f4e8
...
3f53f9071c
11
Makefile
11
Makefile
|
@ -2,18 +2,20 @@ QUBES_DIRS = qubes dom0
|
|||
ALL_DIRS = $(shell ls -d */ | sed 's#/##')
|
||||
GENERAL_DIRS = $(filter-out $(QUBES_DIRS), $(ALL_DIRS))
|
||||
|
||||
.PHONY: all apply-general apply-qubes install-apt-essentials clean
|
||||
.PHONY: all update-git-submodule apply-general apply-qubes install-apt-essentials clean
|
||||
|
||||
all: apply-general apply-qubes
|
||||
all: update-git-submodule apply-general apply-qubes
|
||||
|
||||
update-git-submodule:
|
||||
@echo "Installing git submodules..."
|
||||
git submodule update --init --recursive
|
||||
|
||||
apply-general:
|
||||
@echo "Applying general configurations..."
|
||||
rm ~/.Xresources
|
||||
stow --target=$(HOME) $(GENERAL_DIRS)
|
||||
|
||||
apply-qubes:
|
||||
@echo "Applying Qubes configurations..."
|
||||
sudo rm -rf /rw/config/rc.local
|
||||
sudo stow --target=/ qubes
|
||||
|
||||
install-apt-essentials:
|
||||
|
@ -40,6 +42,7 @@ install-apt-essentials:
|
|||
luarocks \
|
||||
-y
|
||||
|
||||
|
||||
clean:
|
||||
@echo "Removing stowed configurations..."
|
||||
stow -D --target=$(HOME) $(GENERAL_DIRS)
|
||||
|
|
21
README.md
21
README.md
|
@ -1,21 +0,0 @@
|
|||
# Dotfiles a la Stow
|
||||
|
||||
If starting on a new machine, begin by cloning this over https:
|
||||
```
|
||||
$ git clone https://git.distrust.co/anton/dotfiles
|
||||
```
|
||||
|
||||
## Qubes
|
||||
|
||||
The `dom0` files have to be copied over to `dom0` and placed into the correct location. To copy files over use the following command in a `dom0` terminal:
|
||||
|
||||
```
|
||||
$ qvm-run -pass-io <app_vm> 'cat path/to/file` > /path/
|
||||
```
|
||||
|
||||
### Split SSH
|
||||
Ensure that the `qubes-ssh-socket` service is enabled
|
||||
```
|
||||
systemctl --user enable --now qubes-ssh-socket
|
||||
systemctl --user status qubes-ssh-socket
|
||||
```
|
|
@ -1 +0,0 @@
|
|||
ques.SshAgent * @anyvm @anym ask target=vault
|
Loading…
Reference in New Issue