forked from lrvick/dotfiles
Compare commits
3 Commits
3f53f9071c
...
64eed8f4e8
Author | SHA1 | Date |
---|---|---|
|
64eed8f4e8 | |
|
3f98971ed6 | |
|
85029219e9 |
11
Makefile
11
Makefile
|
@ -2,20 +2,18 @@ QUBES_DIRS = qubes dom0
|
|||
ALL_DIRS = $(shell ls -d */ | sed 's#/##')
|
||||
GENERAL_DIRS = $(filter-out $(QUBES_DIRS), $(ALL_DIRS))
|
||||
|
||||
.PHONY: all update-git-submodule apply-general apply-qubes install-apt-essentials clean
|
||||
.PHONY: all apply-general apply-qubes install-apt-essentials clean
|
||||
|
||||
all: update-git-submodule apply-general apply-qubes
|
||||
|
||||
update-git-submodule:
|
||||
@echo "Installing git submodules..."
|
||||
git submodule update --init --recursive
|
||||
all: apply-general apply-qubes
|
||||
|
||||
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:
|
||||
|
@ -42,7 +40,6 @@ install-apt-essentials:
|
|||
luarocks \
|
||||
-y
|
||||
|
||||
|
||||
clean:
|
||||
@echo "Removing stowed configurations..."
|
||||
stow -D --target=$(HOME) $(GENERAL_DIRS)
|
||||
|
|
|
@ -0,0 +1,21 @@
|
|||
# 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
|
||||
```
|
|
@ -0,0 +1 @@
|
|||
ques.SshAgent * @anyvm @anym ask target=vault
|
Loading…
Reference in New Issue