generation 517 25.11.20250714.62e0f05

This commit is contained in:
2025-09-26 02:48:32 -04:00
parent 834f6420ab
commit 5ea351430c
4 changed files with 12 additions and 1 deletions

View File

@@ -4,6 +4,7 @@
osConfig, osConfig,
... ...
}: let }: let
# secretBookmarks = builtins.fromJSON (builtins.readFile osConfig.age.secrets."firefox-bookmarks".path);
# osConfig carries config from configuration.nix # osConfig carries config from configuration.nix
scale = scale =
if osConfig.res == "1366x768" if osConfig.res == "1366x768"
@@ -194,7 +195,7 @@ in {
} }
{ {
name = "verus zulip"; name = "verus zulip";
url = "https://verus-lang.zulipchat.com/"; url = "https://verus-lang.zulipchat.com/#feed";
} }
{ {
name = "vstd docs"; name = "vstd docs";
@@ -204,6 +205,10 @@ in {
name = "core docs"; name = "core docs";
url = "https://doc.rust-lang.org/1.88.0/core/index.html"; url = "https://doc.rust-lang.org/1.88.0/core/index.html";
} }
{
name = "verus github";
url = "https://github.com/verus-lang/verus";
}
]; ];
} }
{ {

View File

@@ -35,6 +35,11 @@
owner = "synchronous"; owner = "synchronous";
mode = "0400"; mode = "0400";
}; };
firefox-bookmarks = {
file = ../secrets/firefox-bookmarks.age;
owner = "synchronous";
mode = "0400";
};
}; };
secretsDir = "/home/synchronous/.agenix/agenix"; secretsDir = "/home/synchronous/.agenix/agenix";
secretsMountPoint = "/home/synchronous/.agenix/agenix.d"; secretsMountPoint = "/home/synchronous/.agenix/agenix.d";

Binary file not shown.

View File

@@ -6,4 +6,5 @@ in {
"tailscale-rq.age".publicKeys = [key]; "tailscale-rq.age".publicKeys = [key];
"ssh-pub.age".publicKeys = [key]; "ssh-pub.age".publicKeys = [key];
"kube.age".publicKeys = [key]; "kube.age".publicKeys = [key];
"firefox-bookmarks.age".publicKeys = [key];
} }