View Dockerfile
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM archlinux:base-devel | |
LABEL org.opencontainers.image.authors="avatar@arkane-systems.net" | |
RUN pacman -Syu --noconfirm pacman-contrib git | |
# makepkg user and workdir | |
ARG pkguser=makepkg | |
RUN useradd --system --create-home $pkguser \ | |
&& echo "$pkguser ALL=(ALL:ALL) NOPASSWD:ALL" > /etc/sudoers.d/$pkguser |
View kernel-config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 5.10.93.2 Kernel Configuration | |
# | |
CONFIG_CC_VERSION_TEXT="gcc (Debian 11.2.0-16) 11.2.0" | |
CONFIG_CC_IS_GCC=y | |
CONFIG_GCC_VERSION=110200 | |
CONFIG_LD_VERSION=237900000 | |
CONFIG_CLANG_VERSION=0 | |
CONFIG_LLD_VERSION=0 |
View apparmor_wsl.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- rc.apparmor.functions 2021-11-08 13:27:06.461249682 -0600 | |
+++ rc.apparmor.functions 2021-11-08 13:30:05.766141212 -0600 | |
@@ -68,7 +68,7 @@ | |
# something like `systemd-detect-virt --container`. | |
# | |
# The only known container environments capable of supporting internal policy | |
-# are LXD and LXC environment. | |
+# are LXD and LXC environments and Windows Subsystem for Linux. | |
# | |
# Returns 0 if the container environment is capable of having its own internal |
View .config
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# | |
# Automatically generated file; DO NOT EDIT. | |
# Linux/x86 5.10.60.1 Kernel Configuration | |
# | |
CONFIG_CC_VERSION_TEXT="gcc (Debian 11.2.0-9) 11.2.0" | |
CONFIG_CC_IS_GCC=y | |
CONFIG_GCC_VERSION=110200 | |
CONFIG_LD_VERSION=236010000 | |
CONFIG_CLANG_VERSION=0 | |
CONFIG_LLD_VERSION=0 |
View automations.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- id: '1633409486743' | |
alias: 'Snapshot: called when front door snapshot updates' | |
description: '' | |
trigger: | |
- platform: state | |
entity_id: camera.front_door_snapshot | |
attribute: timestamp | |
condition: [] | |
action: | |
- service: image_processing.scan |
View base.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Common features for all our device nodes. | |
# Enable logging | |
logger: | |
# Enable wireless networking | |
wifi: | |
ssid: "Arkane Systems" | |
password: "<REDACTED>" | |
fast_connect: true |
View esp8266-huzzah.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Common features for all Adafruit Feather ESP8266 HUZZAH device nodes. | |
esphome: | |
name: ${deviceName} | |
platform: ESP8266 | |
board: huzzah | |
comment: ${description} | |
project: | |
name: "avatar.${deviceName}" | |
version: "${version}" |
View env-office.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
substitutions: | |
deviceName: env-office | |
deviceFriendlyName: Office Environment Sensor | |
description: Environment sensor for my office | |
version: 1.0.0 | |
packages: | |
device: !include packages/esp8266-huzzah.yaml | |
base: !include packages/base.yaml |
View esphome-generic.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
esphome: | |
name: misc-generic | |
platform: ESP8266 | |
board: huzzah | |
comment: A generic node to do generic things. | |
project: | |
name: "avatar.generic" | |
version: "0.1.0" | |
# Enable logging |
View ring-mqtt.yaml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: ring-mqtt | |
name: ring-mqtt | |
namespace: homeassistant | |
spec: | |
replicas: 1 |