Compare commits
32 Commits
Author | SHA1 | Date |
---|---|---|
|
1fe29923db | |
|
a1ed59b29e | |
|
5ee5a4443f | |
|
9b468a7ab5 | |
|
fa89e5402a | |
|
597fdc7fcb | |
|
6c604b7f0e | |
|
64eed8f4e8 | |
|
3f98971ed6 | |
|
85029219e9 | |
|
3f53f9071c | |
|
7eced22aca | |
|
4dd0b8385c | |
|
0fb8a870cf | |
|
8332e7232f | |
|
717548c465 | |
|
e09cd19ec0 | |
|
0be5b92ee2 | |
|
fcffdf221e | |
|
ab3828f3da | |
|
a8bea18cad | |
|
237d8387ec | |
|
a7c22571cb | |
|
cd14e8b5a8 | |
|
ddb574bf83 | |
|
6e9e23a8e6 | |
|
6c06aff4de | |
|
19de06e60f | |
|
7bec16facc | |
|
da25ad830a | |
|
ce792dbb2f | |
|
e07435336b |
51
Makefile
51
Makefile
|
@ -1,3 +1,48 @@
|
|||
.PHONY: apply
|
||||
apply:
|
||||
stow --target=$${HOME} */
|
||||
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
|
||||
|
||||
all: apply-general apply-qubes
|
||||
|
||||
apply-general:
|
||||
@echo "Applying general configurations..."
|
||||
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:
|
||||
sudo apt install \
|
||||
tig \
|
||||
htop \
|
||||
tree \
|
||||
ripgrep \
|
||||
net-tools \
|
||||
stow \
|
||||
zsh \
|
||||
rsync \
|
||||
shellcheck \
|
||||
pass \
|
||||
make \
|
||||
cmake \
|
||||
ninja-build \
|
||||
gettext \
|
||||
curl \
|
||||
build-essential \
|
||||
jq \
|
||||
wget \
|
||||
lua5.4 \
|
||||
luarocks \
|
||||
git-lfs \
|
||||
wormhole \
|
||||
python3-venv \
|
||||
-y
|
||||
|
||||
clean:
|
||||
@echo "Removing stowed configurations..."
|
||||
stow -D --target=$(HOME) $(GENERAL_DIRS)
|
||||
stow -D --target=\ qubes
|
||||
|
|
|
@ -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
|
||||
```
|
|
@ -23,8 +23,8 @@
|
|||
*color11: #657b83
|
||||
|
||||
!! blue dark/light
|
||||
*color4: #268bd2
|
||||
*color12: #839496
|
||||
*color4: #81a1c1
|
||||
*color12: #5fafff
|
||||
|
||||
!! magenta dark/light
|
||||
*color5: #d33682
|
||||
|
|
|
@ -0,0 +1,25 @@
|
|||
exec zsh
|
||||
|
||||
# Source global definitions
|
||||
if [ -f /etc/bashrc ]; then
|
||||
. /etc/bashrc
|
||||
fi
|
||||
|
||||
# User specific environment
|
||||
if ! [[ "$PATH" =~ "$HOME/.local/bin:$HOME/bin:" ]]; then
|
||||
PATH="$HOME/.local/bin:$HOME/bin:$PATH"
|
||||
fi
|
||||
export PATH
|
||||
|
||||
# Uncomment the following line if you don't like systemctl's auto-paging feature:
|
||||
# export SYSTEMD_PAGER=
|
||||
|
||||
# User specific aliases and functions
|
||||
if [ -d ~/.bashrc.d ]; then
|
||||
for rc in ~/.bashrc.d/*; do
|
||||
if [ -f "$rc" ]; then
|
||||
. "$rc"
|
||||
fi
|
||||
done
|
||||
fi
|
||||
unset rc
|
|
@ -0,0 +1 @@
|
|||
ques.SshAgent * @anyvm @anym ask target=vault
|
|
@ -1,7 +1,7 @@
|
|||
[user]
|
||||
email = lance@distrust.co
|
||||
name = Lance R. Vick
|
||||
signingKey = E90A401336C8AAA9
|
||||
name = Anton Livaja
|
||||
email = anton@livaja.me
|
||||
signingKey = F4BF5C81EC78A5DD341C91EEDC4B7D1F52E0BA4D
|
||||
[push]
|
||||
default = simple
|
||||
[color]
|
||||
|
|
|
@ -0,0 +1,9 @@
|
|||
require("config.lazy")
|
||||
vim.opt.number = true
|
||||
vim.opt.relativenumber = true
|
||||
vim.opt.ruler = true
|
||||
vim.opt.cursorline = true
|
||||
vim.opt.cursorcolumn = true
|
||||
vim.opt.colorcolumn = "80"
|
||||
vim.opt.statusline = "%l,%c"
|
||||
|
|
@ -1 +0,0 @@
|
|||
colorscheme lackluster-hack
|
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"editorconfig-vim": { "branch": "master", "commit": "91bd0b0a2c6a72a110ab9feae335e1224480c233" },
|
||||
"lazy.nvim": { "branch": "main", "commit": "6c3bda4aca61a13a9c63f1c1d1b16b9d3be90d7a" },
|
||||
"nvim-treesitter": { "branch": "master", "commit": "2b0760dca2354fecf48ea35fdf1d753a232e3de2" },
|
||||
"tokyonight.nvim": { "branch": "main", "commit": "057ef5d260c1931f1dffd0f052c685dcd14100a3" }
|
||||
}
|
|
@ -0,0 +1,35 @@
|
|||
-- Bootstrap lazy.nvim
|
||||
local lazypath = vim.fn.stdpath("data") .. "/lazy/lazy.nvim"
|
||||
if not (vim.uv or vim.loop).fs_stat(lazypath) then
|
||||
local lazyrepo = "https://github.com/folke/lazy.nvim.git"
|
||||
local out = vim.fn.system({ "git", "clone", "--filter=blob:none", "--branch=stable", lazyrepo, lazypath })
|
||||
if vim.v.shell_error ~= 0 then
|
||||
vim.api.nvim_echo({
|
||||
{ "Failed to clone lazy.nvim:\n", "ErrorMsg" },
|
||||
{ out, "WarningMsg" },
|
||||
{ "\nPress any key to exit..." },
|
||||
}, true, {})
|
||||
vim.fn.getchar()
|
||||
os.exit(1)
|
||||
end
|
||||
end
|
||||
vim.opt.rtp:prepend(lazypath)
|
||||
|
||||
-- Make sure to setup `mapleader` and `maplocalleader` before
|
||||
-- loading lazy.nvim so that mappings are correct.
|
||||
-- This is also a good place to setup other settings (vim.opt)
|
||||
vim.g.mapleader = " "
|
||||
vim.g.maplocalleader = "\\"
|
||||
|
||||
-- Setup lazy.nvim
|
||||
require("lazy").setup({
|
||||
spec = {
|
||||
-- import your plugins
|
||||
{ import = "plugins" },
|
||||
},
|
||||
-- Configure any other settings here. See the documentation for more details.
|
||||
-- colorscheme that will be used when installing plugins.
|
||||
install = { colorscheme = { "habamax" } },
|
||||
-- automatically check for plugin updates
|
||||
checker = { enabled = true, notify = false },
|
||||
})
|
|
@ -0,0 +1,6 @@
|
|||
return {
|
||||
"editorconfig/editorconfig-vim",
|
||||
event = "BufReadPre",
|
||||
lazy = false -- Load immediately to ensure `.editorconfig` rules apply
|
||||
}
|
||||
|
|
@ -0,0 +1,8 @@
|
|||
return {
|
||||
"folke/tokyonight.nvim",
|
||||
lazy = false, -- Load at startup
|
||||
priority = 1000, -- Ensure it loads before everything else
|
||||
config = function()
|
||||
vim.cmd("colorscheme tokyonight") -- Apply the theme
|
||||
end
|
||||
}
|
|
@ -0,0 +1,13 @@
|
|||
return {
|
||||
"nvim-treesitter/nvim-treesitter",
|
||||
build = ":TSUpdate",
|
||||
event = { "BufReadPost", "BufNewFile" },
|
||||
config = function()
|
||||
require("nvim-treesitter.configs").setup({
|
||||
ensure_installed = { "lua", "vim", "bash", "python", "javascript" }, -- Add needed languages
|
||||
highlight = { enable = true },
|
||||
indent = { enable = true },
|
||||
})
|
||||
end
|
||||
}
|
||||
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"features": {
|
||||
"containerd-snapshotter": true
|
||||
}
|
||||
}
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"features": {
|
||||
"containerd-snapshotter": true
|
||||
}
|
||||
}
|
|
@ -0,0 +1,10 @@
|
|||
[Unit]
|
||||
Description=Run a SSH proxy socket to another QubesOS VM
|
||||
|
||||
[Service]
|
||||
Environment=SSH_VAULT_VM=vault
|
||||
ExecStart=%h/.local/bin/qubes-ssh-socket
|
||||
Restart=always
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
|
@ -1,2 +1,3 @@
|
|||
binds+=('/var/lib/docker')
|
||||
binds+=('/var/lib/containerd')
|
||||
binds+=('/etc/systemd/user/qubes-ssh-socket.service')
|
|
@ -0,0 +1,10 @@
|
|||
# SPLIT SSH CONFIGURATION >>>
|
||||
# replace "vault" with your AppVM name which stores the ssh private key(s)
|
||||
SSH_VAULT_VM="vault"
|
||||
|
||||
if [ "$SSH_VAULT_VM" != "" ]; then
|
||||
export SSH_SOCK="/home/user/.SSH_AGENT_$SSH_VAULT_VM"
|
||||
rm -f "$SSH_SOCK"
|
||||
sudo -u user /bin/sh -c "umask 177 && exec socat 'UNIX-LISTEN:$SSH_SOCK,fork' 'EXEC:qrexec-client-vm $SSH_VAULT_VM qubes.SshAgent'" &
|
||||
fi
|
||||
# <<< SPLIT SSH CONFIGURATION
|
|
@ -0,0 +1,10 @@
|
|||
[Unit]
|
||||
Description=Run a SSH proxy socket to another QubesOS VM
|
||||
|
||||
[Service]
|
||||
Environment=SSH_VAULT_VM=vault
|
||||
ExecStart=%h/.local/bin/qubes-ssh-socket
|
||||
Restart=always
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
|
@ -5,3 +5,7 @@ run-shell "powerline-daemon -q"
|
|||
source "/usr/share/powerline/bindings/tmux/powerline.conf"
|
||||
|
||||
# vim: ft=tmux
|
||||
|
||||
# Fix coloring
|
||||
set-option -g default-terminal "xterm-256color"
|
||||
set-option -ga terminal-overrides ",xterm-256color:Tc"
|
30
zsh/.zshrc
30
zsh/.zshrc
|
@ -5,7 +5,7 @@ if [[ -r "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh" ]]
|
|||
source "${XDG_CACHE_HOME:-$HOME/.cache}/p10k-instant-prompt-${(%):-%n}.zsh"
|
||||
fi
|
||||
|
||||
export DEFAULT_USER="lrvick"
|
||||
export DEFAULT_USER="anton"
|
||||
export DISABLE_AUTO_UPDATE="true"
|
||||
export COMPLETION_WAITING_DOTS="true"
|
||||
export HISTFILE=~/.zsh_history
|
||||
|
@ -20,3 +20,31 @@ source ~/.zsh/themes/powerlevel10k/powerlevel10k.zsh-theme
|
|||
|
||||
# To customize prompt, run `p10k configure` or edit ~/.p10k.zsh.
|
||||
[[ ! -f ~/.p10k.zsh ]] || source ~/.p10k.zsh
|
||||
|
||||
# Aliases
|
||||
alias gib='git branch'
|
||||
alias gis='git status'
|
||||
alias gfa='git fetch -a'
|
||||
alias gpoh='git push origin HEAD'
|
||||
|
||||
# Bindkeys
|
||||
bindkey '^R' history-incremental-search-backward # ctrl + shift + r -> Reverse search
|
||||
bindkey '^A' beginning-of-line # ctrl + a -> Move to start of line
|
||||
bindkey '^E' end-of-line # ctrl + e -> Move to end of line
|
||||
bindkey '^[[1;5D' backward-word # ctrl + left arrow -> Move back one word
|
||||
bindkey '^[[1;5C' forward-word # Ctrl + right arrow -> Move forward one word
|
||||
bindkey '\ed' kill-word
|
||||
|
||||
# Color different file types
|
||||
export LS_COLORS='di=94:ln=36:so=35:pi=33:ex=32:bd=46;34:cd=46;34'
|
||||
alias ls='ls --color=auto'
|
||||
|
||||
export GPG_TTY=$(tty)
|
||||
|
||||
# SPLIT SSH CONFIGURATION >>>
|
||||
SSH_VAULT_VM="vault"
|
||||
|
||||
if [ "$SSH_VAULT_VM" != "" ]; then
|
||||
export SSH_AUTH_SOCK="/home/user/.SSH_AGENT_$SSH_VAULT_VM"
|
||||
fi
|
||||
# <<< SPLIT SSH CONFIGURATION
|
||||
|
|
Loading…
Reference in New Issue