Merge branch 'main' of 10.42.4.3:greg/nixos-config

This commit is contained in:
Greg Hellings
2025-06-05 13:25:38 -05:00
73 changed files with 14236 additions and 426 deletions
+4 -8
View File
@@ -7,14 +7,10 @@ def bw_unlock():
current environment variables. Also returns the code for them."""
if "BW_SESSION" in ${...}:
return $BW_SESSION
result = $(bw unlock)
while "BW_SESSION" not in result:
result = $(bw unlock)
lines = result.split("\n")
l = [k for k in lines if 'BW_SESSION="' in k][0]
left, right = l.split("=", 1)
token = right[1:-1]
$BW_SESSION = token
result = !(bw unlock --raw)
while result.returncode != 0:
result = !(bw unlock --raw)
$BW_SESSION = result.output.strip()
return token
def vpn(con, bwname):
+13
View File
@@ -211,6 +211,10 @@
}
];
}
{
name = "PGAdmin4";
url = "http://pgadmin.kubernetes/";
}
{
name = "Password Hash";
url = "https://unix4lyfe.org/crypt/";
@@ -238,6 +242,15 @@
}
];
}
{
name = "Docs";
bookmarks = [
{
name = "CloudNative PG";
url = "https://cloudnative-pg.io/documentation/1.26/";
}
];
}
];
}
]