1
0
Fork 0

Some fixes...

This commit is contained in:
J. Elfring 2024-03-04 17:05:10 +01:00
parent 9364a2f19d
commit a514ad91a2
11 changed files with 117 additions and 2 deletions

View file

@ -0,0 +1,27 @@
[colors.bright]
black = "#181818"
blue = "#90b0d1"
cyan = "#87ceeb"
green = "#b1d631"
magenta = "#8181a6"
red = "#ff6a6a"
white = "#c1cdc1"
yellow = "#ff9800"
[colors.cursor]
cursor = "#c2c2b0"
text = "#c2c2b0"
[colors.normal]
black = "#111111"
blue = "#6688aa"
cyan = "#528b8b"
green = "#719611"
magenta = "#8f6f8f"
red = "#aa4450"
white = "#d3d3d3"
yellow = "#cc8800"
[colors.primary]
background = "#222222"
foreground = "#c2c2b0"

View file

@ -0,0 +1,22 @@
import = ["/home/je/.config/alacritty/active_colourscheme.toml"]
[cursor.style]
shape = "Beam"
[cursor.vi_mode_style]
shape = "Underline"
[font]
size = 10
[font.bold]
family = "EnvyCodeR"
style = "Bold"
[font.italic]
family = "EnvyCodeR"
style = "Italic"
[font.normal]
family = "EnvyCodeR"
style = "Regular"

View file

@ -35,6 +35,7 @@ debug = no
privilegeescalationtool = sudo
privilegeescalationtarget = pikaur
userid = 0
preserveenv = PKGDEST,VISUAL,EDITOR,http_proxy,https_proxy,ftp_proxy,HTTP_PROXY,HTTPS_PROXY,FTP_PROXY,ALL_PROXY
[review]
noedit = yes

View file

@ -24,7 +24,7 @@
package:
name:
- puppet
state: present
state: absent
update_cache: false
- name: "Console settings"

View file

@ -0,0 +1,2 @@
ChallengeResponseAuthentication no
PermitRootLogin no

View file

@ -0,0 +1,3 @@
PubkeyAuthentication yes
AuthorizedKeysCommand /etc/ssh/userkeys.sh
AuthorizedKeysCommandUser nobody

View file

@ -0,0 +1,3 @@
X11Forwarding yes
X11DisplayOffset 10
X11UseLocalhost no

View file

@ -0,0 +1,3 @@
#!/bin/sh
curl --silent --fail https://code.elfring.ms/$1.keys 2>&1

View file

@ -0,0 +1,53 @@
- name: "Server Setup"
hosts: localhost
connection: local
tasks:
- name: "Install base packages"
package:
name:
- openssh
state: present
update_cache: true
- name: "Run SSH Server"
service:
name: sshd
state: started
enabled: yes
- name: "Sudo: config file"
copy:
dest: /etc/sudoers
src: ./lib/etc/sudoers
owner: root
group: root
mode: 0440
- name: "Sudo: Create groups"
group:
name: '{{ item }}'
state: present
system: true
with_items:
- wheel
- sudo
- name: "Pacman configuration"
when: "'arm' not in ansible_machine"
copy:
dest: /etc/pacman.conf
src: ./lib/etc/pacman.conf
owner: root
group: root
mode: 0644
- name: "Pacman configuration (ARM)"
when: "'arm' in ansible_machine"
copy:
dest: /etc/pacman.conf
src: ./lib/etc/pacman.conf.arm
owner: root
group: root
mode: 0644

View file

@ -10,9 +10,9 @@
aur:
name:
- autotiling
- free42
- insync
- c-lolcat
- plus42
- ttf-unifont
- ttf-symbola

View file

@ -12,6 +12,7 @@ user_pref("cookiebanners.service.mode", 2 );
user_pref("cookiebanners.service.mode.privateBrowsing", 2 );
user_pref("cookiebanners.ui.desktop.enabled", true );
user_pref("signon.firefoxRelay.feature", "0" ) ;
user_pref("signon.includeOtherSubdomainsInLookup" false) ;
#+END_EXAMPLE