alpha
Login
or
Join now
yemou.pink
/
nix-configs
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Nix configurations for my homelab
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
rename bsky-sieve to atproto-sieve
author
yemou
date
4 months ago
(Feb 16, 2026, 8:03 PM -0500)
commit
15edd7d4
15edd7d4cef7474ea7b4eab8ff1d51c51c5f5f7e
parent
7dbbab1b
7dbbab1b31b5b5129814166afe0b34a2f33d40b1
+14
-14
3 changed files
Expand all
Collapse all
Unified
Split
flake.lock
lily
config.nix
modules
services
caddy
atproto-sieve.nix
+9
-9
flake.lock
Reviewed
···
111
111
]
112
112
},
113
113
"locked": {
114
114
-
"lastModified": 1771132481,
115
115
-
"narHash": "sha256-Tc+YqZ/Q1K35vJK4ji4RbLB/qKGcEq6yh7p4CKoZF60=",
114
114
+
"lastModified": 1771269455,
115
115
+
"narHash": "sha256-BZ31eN5F99YH6vkc4AhzKGE+tJgJ52kl8f01K7wCs8w=",
116
116
"owner": "nix-community",
117
117
"repo": "home-manager",
118
118
-
"rev": "1e53254671f36cb7d0e2dcca08730f066d5e69b4",
118
118
+
"rev": "5f1d42a97b19803041434f66681d5c44c9ae62e3",
119
119
"type": "github"
120
120
},
121
121
"original": {
···
293
293
},
294
294
"nixpkgs_2": {
295
295
"locked": {
296
296
-
"lastModified": 1771176007,
297
297
-
"narHash": "sha256-LZFQxwrlavlo0/795DbBozUnG0LNwRfoQa4N612uOJQ=",
296
296
+
"lastModified": 1771218441,
297
297
+
"narHash": "sha256-BZ2vjG1LMwWoLTRb+OJksrTyLo5xbo3Vs9TiB+ozarY=",
298
298
"owner": "NixOS",
299
299
"repo": "nixpkgs",
300
300
-
"rev": "5b8134af6e30b731bd8ab7db4be39e9bb64ff2e0",
300
300
+
"rev": "007d7747527cde542ffec2a4011d17658d2c6ab2",
301
301
"type": "github"
302
302
},
303
303
"original": {
···
363
363
"rust-overlay": "rust-overlay"
364
364
},
365
365
"locked": {
366
366
-
"lastModified": 1771047946,
367
367
-
"narHash": "sha256-dWz5V6gspHw3PxJqmomVKm79XEVfBGgpNfp/J4H4Y5Q=",
366
366
+
"lastModified": 1771211168,
367
367
+
"narHash": "sha256-Md+3fi4Nc9pmEqtqCeXPwFXY28/2daMX4v1pn6kZqvg=",
368
368
"owner": "roc-lang",
369
369
"repo": "roc",
370
370
-
"rev": "323d73216ad6b9159efbccac06e20b36c9aa2db1",
370
370
+
"rev": "f393902c91986c2cb691a08b82389d5cc89a3453",
371
371
"type": "github"
372
372
},
373
373
"original": {
+1
-1
lily/config.nix
Reviewed
···
23
23
24
24
../modules/services/caddy
25
25
../modules/services/caddy/atproto-did.nix
26
26
-
../modules/services/caddy/bsky-sieve.nix
26
26
+
../modules/services/caddy/atproto-sieve.nix
27
27
../modules/services/caddy/cp-certs.nix
28
28
../modules/services/caddy/jellyfin.nix
29
29
../modules/services/caddy/mumble.nix
+4
-4
modules/services/caddy/bsky-sieve.nix
modules/services/caddy/atproto-sieve.nix
Reviewed
···
1
1
{ ... }:
2
2
{
3
3
services.caddy.virtualHosts = {
4
4
-
"bsky-sieve.yem.pink".extraConfig = ''
4
4
+
"atproto-sieve.yem.pink".extraConfig = ''
5
5
encode
6
6
7
7
@redirect {
8
8
expression `{path} == "/"`
9
9
}
10
10
11
11
-
redir @redirect https://tangled.org/yemou.pink/bsky-sieve
11
11
+
redir @redirect https://tangled.org/yemou.pink/atproto-sieve
12
12
13
13
handle_errors {
14
14
respond "{err.status_code} {err.status_text}"
···
18
18
header /oauth-client-metadata.json Content-Type application/json
19
19
respond /oauth-client-metadata.json <<JSON
20
20
{
21
21
-
"client_id": "https://bsky-sieve.yem.pink/oauth-client-metadata.json",
21
21
+
"client_id": "https://atproto-sieve.yem.pink/oauth-client-metadata.json",
22
22
"application_type": "native",
23
23
"grant_types": [
24
24
"authorization_code"
···
32
32
],
33
33
"token_endpoint_auth_method": "none",
34
34
"dpop_bound_access_tokens": true,
35
35
-
"client_name": "bsky-sieve"
35
35
+
"client_name": "atproto-sieve"
36
36
}
37
37
JSON
38
38
'';