I hereby claim:
- I am bashfulrobot on github.
- I am dustinkrysak (https://keybase.io/dustinkrysak) on keybase.
- I have a public key ASCKNBT76wxFOn5XE3N4VJXrzbWJ9ClrLJ_OYqhmzic-Cgo
To claim this, I am signing this object:
I hereby claim:
To claim this, I am signing this object:
#!/bin/bash | |
curl -s -F "shorten=$1" https://0x0.st | xclip -selection c | |
exit 0 |
#!/usr/bin/env bash | |
mkdir -p $HOME/tmp/$1 && cd $HOME/tmp/$1 | |
git init | |
gh repo create -d "$2" --public | |
git remote set-url origin [email protected]:bashfulrobot/$1.git | |
git checkout -b main | |
echo "$2" >> README | |
git add README |
#### Sysdig Deploy Chart - https://charts.sysdig.com/charts/sysdig-deploy/ | |
global: | |
clusterConfig: | |
name: op://secrets/sysdig-us2-agent-install/dt-cluster-name | |
sysdig: | |
accessKey: op://secrets/sysdig-us2-agent-install/accessKey | |
region: op://secrets/sysdig-us2-agent-install/region | |
kspm: | |
deploy: true | |
kspmCollector: |
{ ... }: | |
let | |
username = if builtins.getEnv "SUDO_USER" != "" then | |
builtins.getEnv "SUDO_USER" | |
else | |
builtins.getEnv "USER"; | |
in { | |
home-manager.users."${username}".programs.autojump = { | |
enable = true; | |
enableFishIntegration = true; |
{ config, pkgs, ... }: | |
let | |
username = if builtins.getEnv "SUDO_USER" != "" then | |
builtins.getEnv "SUDO_USER" | |
else | |
builtins.getEnv "USER"; | |
in { | |
# Enable the 1Passsword GUI with myself as an authorized user for polkit |