feat: add ssh allowed_signers
This commit is contained in:
parent
aff4450e61
commit
cd0a564d9a
6 changed files with 17 additions and 2 deletions
|
|
@ -9,6 +9,7 @@ halig = "~/.config/halig"
|
|||
k9smocha = "~/.config/k9s/skins/mocha.yaml"
|
||||
sshconfig = "~/.ssh/config"
|
||||
gitconfig = "~/.gitconfig"
|
||||
allowed_signers = "~/.ssh/allowed_signers"
|
||||
rofi = "~/.config/rofi"
|
||||
topgrade = "~/.config/topgrade.toml"
|
||||
garden = "~/.config/garden/garden.yaml"
|
||||
|
|
|
|||
1
allowed_signers
Normal file
1
allowed_signers
Normal file
|
|
@ -0,0 +1 @@
|
|||
catalin@roboces.dev namespaces="git" ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIL++DKyzE0+zM6A4lpjWTNvntQnmEdA6FoOh6jIdsHMT catalin@roboces.dev
|
||||
|
|
@ -32,4 +32,6 @@
|
|||
- snapd
|
||||
- kubectl
|
||||
- glow
|
||||
- postgresql-client-common
|
||||
- postgresql-client-15
|
||||
state: present
|
||||
|
|
|
|||
|
|
@ -12,3 +12,4 @@
|
|||
- ruff
|
||||
- thefuck
|
||||
- streamlink
|
||||
- tldr
|
||||
|
|
|
|||
|
|
@ -39,3 +39,11 @@ function ffmerge
|
|||
|
||||
ffmpeg $input_videos -filter_complex (printf "[%s] " $input_videos | sed 's/ -i / concat=n=%d:v=1:a=1 [v] [a]/') -map "[v]" -map "[a]" $output
|
||||
end
|
||||
|
||||
function fish_right_prompt
|
||||
set -l k8s_color (set_color blue)
|
||||
set -l k8s_context (kubectl config current-context)
|
||||
|
||||
echo -e -n -s $k8s_color "($k8s_context)"
|
||||
end
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
[user]
|
||||
name = cătălin
|
||||
email = catalin@roboces.dev
|
||||
signingKey = ~/.ssh/id_ed25519.pub
|
||||
signingkey = ~/.ssh/id_ed25519.pub
|
||||
|
||||
[interactive]
|
||||
diffFilter = delta --color-only
|
||||
|
|
@ -28,3 +28,5 @@
|
|||
|
||||
[gpg]
|
||||
format = ssh
|
||||
[gpg "ssh"]
|
||||
allowedSignersFile = ~/.ssh/allowed_signers
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue