Add more packages, fix nvim and sshconfig
This commit is contained in:
parent
614457310a
commit
8741dd4ecf
3 changed files with 15 additions and 0 deletions
|
@ -14,6 +14,7 @@
|
||||||
install_recommends: true
|
install_recommends: true
|
||||||
pkg:
|
pkg:
|
||||||
- ansible
|
- ansible
|
||||||
|
- cargo
|
||||||
- composer
|
- composer
|
||||||
- curl
|
- curl
|
||||||
- dia
|
- dia
|
||||||
|
@ -22,6 +23,7 @@
|
||||||
- git
|
- git
|
||||||
- grimshot
|
- grimshot
|
||||||
- inkscape
|
- inkscape
|
||||||
|
- isort
|
||||||
- libreoffice
|
- libreoffice
|
||||||
- lxpolkit
|
- lxpolkit
|
||||||
- mesa-utils
|
- mesa-utils
|
||||||
|
@ -38,6 +40,7 @@
|
||||||
- plocate
|
- plocate
|
||||||
- pkexec
|
- pkexec
|
||||||
- puppet-lint
|
- puppet-lint
|
||||||
|
- python3-deepdiff
|
||||||
- python3-openstackclient
|
- python3-openstackclient
|
||||||
- python3-yamlfix
|
- python3-yamlfix
|
||||||
- rsync
|
- rsync
|
||||||
|
@ -61,6 +64,7 @@
|
||||||
- xdg-desktop-portal
|
- xdg-desktop-portal
|
||||||
- xdg-desktop-portal-wlr
|
- xdg-desktop-portal-wlr
|
||||||
- xwayland
|
- xwayland
|
||||||
|
- yapf3
|
||||||
- yq
|
- yq
|
||||||
- zsh
|
- zsh
|
||||||
state: latest
|
state: latest
|
||||||
|
|
|
@ -87,3 +87,13 @@
|
||||||
owner: '{{ uid }}'
|
owner: '{{ uid }}'
|
||||||
group: '{{ uid }}'
|
group: '{{ uid }}'
|
||||||
mode: '0644'
|
mode: '0644'
|
||||||
|
- name: Link up yapf
|
||||||
|
ansible.builtin.file:
|
||||||
|
src: /usr/bin/yapf3
|
||||||
|
dest: /usr/local/bin/yapf
|
||||||
|
state: link
|
||||||
|
become: true
|
||||||
|
- name: Install stylua
|
||||||
|
ansible.builtin.command:
|
||||||
|
cmd: cargo install stylua
|
||||||
|
creates: /home/{{ uid }}/.cargo/bin/stylua
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
Host *
|
Host *
|
||||||
HostKeyAlgorithms +ssh-rsa
|
HostKeyAlgorithms +ssh-rsa
|
||||||
|
PubkeyAcceptedKeyTypes +ssh-rsa
|
||||||
Host hj
|
Host hj
|
||||||
HostName hoppjerka.sunet.se.
|
HostName hoppjerka.sunet.se.
|
||||||
IdentityFile ~/.ssh/id_rsa_yubikey.pub
|
IdentityFile ~/.ssh/id_rsa_yubikey.pub
|
||||||
|
|
Loading…
Add table
Reference in a new issue