Compare commits
15 Commits
d2f0de3751
...
main
| Author | SHA1 | Date | |
|---|---|---|---|
| 300ca6b436 | |||
| 8e782b24bd | |||
| f0f26f78f4 | |||
| cb3e33b5dc | |||
| 279423edf5 | |||
| 4cb475b277 | |||
| 39fabae9d0 | |||
| 13b8b1877e | |||
| 4eae67f0db | |||
| 5ae0cb8665 | |||
| 40ff5324e1 | |||
| 5f6d2e8e3a | |||
| a17de92e35 | |||
| fab91bb7c2 | |||
| 4c89cff398 |
2
.gitmodules
vendored
2
.gitmodules
vendored
@@ -1,3 +1,3 @@
|
||||
[submodule "nvim/.config/nvim"]
|
||||
path = nvim/.config/nvim
|
||||
url = git@gitlab.com:sam_oneal/nvim-config.git
|
||||
url = ssh://git@git-ssh.samoneal.io:2222/sam_oneal/nvim-config.git
|
||||
|
||||
10
.pre-commit-config.yaml
Normal file
10
.pre-commit-config.yaml
Normal file
@@ -0,0 +1,10 @@
|
||||
repos:
|
||||
- repo: https://github.com/pre-commit/pre-commit-hooks
|
||||
rev: v4.6.0
|
||||
hooks:
|
||||
- id: trailing-whitespace
|
||||
- repo: https://github.com/Yelp/detect-secrets
|
||||
rev: v1.5.0
|
||||
hooks:
|
||||
- id: detect-secrets
|
||||
args: ['--baseline', '.secrets.baseline']
|
||||
137
.secrets.baseline
Normal file
137
.secrets.baseline
Normal file
@@ -0,0 +1,137 @@
|
||||
{
|
||||
"version": "1.5.0",
|
||||
"plugins_used": [
|
||||
{
|
||||
"name": "ArtifactoryDetector"
|
||||
},
|
||||
{
|
||||
"name": "AWSKeyDetector"
|
||||
},
|
||||
{
|
||||
"name": "AzureStorageKeyDetector"
|
||||
},
|
||||
{
|
||||
"name": "Base64HighEntropyString",
|
||||
"limit": 4.5
|
||||
},
|
||||
{
|
||||
"name": "BasicAuthDetector"
|
||||
},
|
||||
{
|
||||
"name": "CloudantDetector"
|
||||
},
|
||||
{
|
||||
"name": "DiscordBotTokenDetector"
|
||||
},
|
||||
{
|
||||
"name": "GitHubTokenDetector"
|
||||
},
|
||||
{
|
||||
"name": "GitLabTokenDetector"
|
||||
},
|
||||
{
|
||||
"name": "HexHighEntropyString",
|
||||
"limit": 3.0
|
||||
},
|
||||
{
|
||||
"name": "IbmCloudIamDetector"
|
||||
},
|
||||
{
|
||||
"name": "IbmCosHmacDetector"
|
||||
},
|
||||
{
|
||||
"name": "IPPublicDetector"
|
||||
},
|
||||
{
|
||||
"name": "JwtTokenDetector"
|
||||
},
|
||||
{
|
||||
"name": "KeywordDetector",
|
||||
"keyword_exclude": ""
|
||||
},
|
||||
{
|
||||
"name": "MailchimpDetector"
|
||||
},
|
||||
{
|
||||
"name": "NpmDetector"
|
||||
},
|
||||
{
|
||||
"name": "OpenAIDetector"
|
||||
},
|
||||
{
|
||||
"name": "PrivateKeyDetector"
|
||||
},
|
||||
{
|
||||
"name": "PypiTokenDetector"
|
||||
},
|
||||
{
|
||||
"name": "SendGridDetector"
|
||||
},
|
||||
{
|
||||
"name": "SlackDetector"
|
||||
},
|
||||
{
|
||||
"name": "SoftlayerDetector"
|
||||
},
|
||||
{
|
||||
"name": "SquareOAuthDetector"
|
||||
},
|
||||
{
|
||||
"name": "StripeDetector"
|
||||
},
|
||||
{
|
||||
"name": "TelegramBotTokenDetector"
|
||||
},
|
||||
{
|
||||
"name": "TwilioKeyDetector"
|
||||
}
|
||||
],
|
||||
"filters_used": [
|
||||
{
|
||||
"path": "detect_secrets.filters.allowlist.is_line_allowlisted"
|
||||
},
|
||||
{
|
||||
"path": "detect_secrets.filters.common.is_ignored_due_to_verification_policies",
|
||||
"min_level": 2
|
||||
},
|
||||
{
|
||||
"path": "detect_secrets.filters.heuristic.is_indirect_reference"
|
||||
},
|
||||
{
|
||||
"path": "detect_secrets.filters.heuristic.is_likely_id_string"
|
||||
},
|
||||
{
|
||||
"path": "detect_secrets.filters.heuristic.is_lock_file"
|
||||
},
|
||||
{
|
||||
"path": "detect_secrets.filters.heuristic.is_not_alphanumeric_string"
|
||||
},
|
||||
{
|
||||
"path": "detect_secrets.filters.heuristic.is_potential_uuid"
|
||||
},
|
||||
{
|
||||
"path": "detect_secrets.filters.heuristic.is_prefixed_with_dollar_sign"
|
||||
},
|
||||
{
|
||||
"path": "detect_secrets.filters.heuristic.is_sequential_string"
|
||||
},
|
||||
{
|
||||
"path": "detect_secrets.filters.heuristic.is_swagger_file"
|
||||
},
|
||||
{
|
||||
"path": "detect_secrets.filters.heuristic.is_templated_secret"
|
||||
}
|
||||
],
|
||||
"results": {
|
||||
".gitlab-ci.yml": [
|
||||
{
|
||||
"type": "Secret Keyword",
|
||||
"filename": ".gitlab-ci.yml",
|
||||
"hashed_secret": "5ffe533b830f08a0326348a9160afafc8ada44db",
|
||||
"is_verified": false,
|
||||
"line_number": 17
|
||||
}
|
||||
]
|
||||
},
|
||||
"generated_at": "2026-05-09T16:46:32Z"
|
||||
}
|
||||
2
Makefile
2
Makefile
@@ -38,7 +38,7 @@ check-stow:
|
||||
.PHONY: pull-updates
|
||||
pull-updates:
|
||||
@echo "Pulling all recent updates"
|
||||
@git pull
|
||||
@git pull origin main
|
||||
@git submodule update --recursive --remote
|
||||
|
||||
.PHONY: link
|
||||
|
||||
BIN
backgrounds/.config/backgrounds/54960149350_87a438fa86_6k.jpg
LFS
Normal file
BIN
backgrounds/.config/backgrounds/54960149350_87a438fa86_6k.jpg
LFS
Normal file
Binary file not shown.
BIN
backgrounds/.config/backgrounds/55051947249_226c99ae1d_6k.jpg
LFS
Normal file
BIN
backgrounds/.config/backgrounds/55051947249_226c99ae1d_6k.jpg
LFS
Normal file
Binary file not shown.
BIN
backgrounds/.config/backgrounds/PIA26077~orig.jpg
LFS
Normal file
BIN
backgrounds/.config/backgrounds/PIA26077~orig.jpg
LFS
Normal file
Binary file not shown.
BIN
backgrounds/.config/backgrounds/art002e009298~large.jpg
LFS
Normal file
BIN
backgrounds/.config/backgrounds/art002e009298~large.jpg
LFS
Normal file
Binary file not shown.
BIN
backgrounds/.config/backgrounds/art002e009301~large.jpg
LFS
Normal file
BIN
backgrounds/.config/backgrounds/art002e009301~large.jpg
LFS
Normal file
Binary file not shown.
BIN
backgrounds/.config/backgrounds/art002e012632~large.jpg
LFS
Normal file
BIN
backgrounds/.config/backgrounds/art002e012632~large.jpg
LFS
Normal file
Binary file not shown.
@@ -45,5 +45,5 @@
|
||||
theme = Catppuccin Frappe
|
||||
font-size = 14
|
||||
background-opacity = 0.85
|
||||
gtk-titlebar = false
|
||||
# gtk-titlebar = false
|
||||
shell-integration-features = ssh-terminfo,ssh-env,sudo
|
||||
|
||||
7
hosts/.config/hosts
Normal file
7
hosts/.config/hosts
Normal file
@@ -0,0 +1,7 @@
|
||||
# Standard host addresses
|
||||
127.0.0.1 localhost kubernetes.default.svc
|
||||
::1 localhost ip6-localhost ip6-loopback
|
||||
ff02::1 ip6-allnodes
|
||||
ff02::2 ip6-allrouters
|
||||
# This host address
|
||||
127.0.1.1 sams_laptop
|
||||
@@ -1,3 +1,3 @@
|
||||
monitor = desc:BOE 0x0BC9, preferred, auto-center-left, 1.33 # Main laptop display
|
||||
monitor = desc:Viewteck Co. Ltd. GNV34DB, 3440x1440@50, auto-center-right, auto # Ultra-wide Monitor
|
||||
# Generated by nwg-displays on 2026-05-08 at 23:25:33. Do not edit manually.
|
||||
|
||||
monitor=desc:BOE 0x0BC9,2560x1600@165.0,0x0,1.25
|
||||
|
||||
Submodule nvim/.config/nvim updated: bed9726930...94b2c40db1
23
systemd/.config/systemd/user/cloudflared-k8s.service
Normal file
23
systemd/.config/systemd/user/cloudflared-k8s.service
Normal file
@@ -0,0 +1,23 @@
|
||||
# If this is being put on a new machine or OS install ensure you do the following:
|
||||
# systemctl --user daemon-reload
|
||||
# systemctl --user enable --now cloudflared-k8s.service
|
||||
# systemctl --user status cloudflared-k8s.service
|
||||
|
||||
[Unit]
|
||||
Description=Cloudflare Tunnel to K8s API
|
||||
After=network-online.target graphical-session.target
|
||||
BindsTo=graphical-session.target
|
||||
Wants=network-online.target systemd-networkd-wait-online.service
|
||||
|
||||
StartLimitIntervalSec=500
|
||||
StartLimitBurst=5
|
||||
|
||||
[Service]
|
||||
PassEnvironment=DISPLAY WAYLAND_DISPLAY DBUS_SESSION_BUS_ADDRESS XDG_RUNTIME_DIR
|
||||
ExecStart=uwsm app -- /usr/bin/cloudflared access tcp --hostname k8s.samoneal.io --url localhost:6443
|
||||
Restart=on-failure
|
||||
RestartSec=60
|
||||
|
||||
[Install]
|
||||
WantedBy=default.target
|
||||
|
||||
@@ -120,8 +120,12 @@ export PATH=$HOME/.local/share/JetBrains/Toolbox/scripts:$PATH
|
||||
export PATH=$HOME/go/bin:$PATH
|
||||
|
||||
# Avante AI Keys
|
||||
# export ANTHROPIC_API_KEY=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 # No longer valid, sorry ;P
|
||||
# export ANTHROPIC_API_KEY=XXXXXXX
|
||||
|
||||
# Docker
|
||||
alias docker=podman
|
||||
|
||||
export DOCKER_HOST=unix://$XDG_RUNTIME_DIR/podman/podman.sock
|
||||
|
||||
# Hosts Aliases
|
||||
export HOSTALIASES=$HOME/.config/hosts
|
||||
|
||||
Reference in New Issue
Block a user