Some fixes...
This commit is contained in:
parent
9364a2f19d
commit
a514ad91a2
11 changed files with 117 additions and 2 deletions
27
configDots/alacritty/active_colourscheme.toml
Normal file
27
configDots/alacritty/active_colourscheme.toml
Normal 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"
|
22
configDots/alacritty/alacritty.toml
Normal file
22
configDots/alacritty/alacritty.toml
Normal 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"
|
|
@ -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
|
||||
|
|
|
@ -24,7 +24,7 @@
|
|||
package:
|
||||
name:
|
||||
- puppet
|
||||
state: present
|
||||
state: absent
|
||||
update_cache: false
|
||||
|
||||
- name: "Console settings"
|
||||
|
|
2
sysconfig_arch/lib/etc/ssh/sshd_config.d/sec.conf
Normal file
2
sysconfig_arch/lib/etc/ssh/sshd_config.d/sec.conf
Normal file
|
@ -0,0 +1,2 @@
|
|||
ChallengeResponseAuthentication no
|
||||
PermitRootLogin no
|
3
sysconfig_arch/lib/etc/ssh/sshd_config.d/userkeys.conf
Normal file
3
sysconfig_arch/lib/etc/ssh/sshd_config.d/userkeys.conf
Normal file
|
@ -0,0 +1,3 @@
|
|||
PubkeyAuthentication yes
|
||||
AuthorizedKeysCommand /etc/ssh/userkeys.sh
|
||||
AuthorizedKeysCommandUser nobody
|
3
sysconfig_arch/lib/etc/ssh/sshd_config.d/x11.conf
Normal file
3
sysconfig_arch/lib/etc/ssh/sshd_config.d/x11.conf
Normal file
|
@ -0,0 +1,3 @@
|
|||
X11Forwarding yes
|
||||
X11DisplayOffset 10
|
||||
X11UseLocalhost no
|
3
sysconfig_arch/lib/etc/ssh/userkeys.sh
Normal file
3
sysconfig_arch/lib/etc/ssh/userkeys.sh
Normal file
|
@ -0,0 +1,3 @@
|
|||
#!/bin/sh
|
||||
curl --silent --fail https://code.elfring.ms/$1.keys 2>&1
|
||||
|
53
sysconfig_arch/server.yaml
Normal file
53
sysconfig_arch/server.yaml
Normal 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
|
|
@ -10,9 +10,9 @@
|
|||
aur:
|
||||
name:
|
||||
- autotiling
|
||||
- free42
|
||||
- insync
|
||||
- c-lolcat
|
||||
- plus42
|
||||
- ttf-unifont
|
||||
- ttf-symbola
|
||||
|
||||
|
|
|
@ -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
|
||||
|
||||
|
||||
|
|
Reference in a new issue