Configuration for my NixOS based systems and Home Manager
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Update Pocket ID to unstable 2.x release

+20
+8
host-specific/misaki/services.nix
··· 495 495 ]; 496 496 }; 497 497 498 + age.secrets.pocket-id-encryption-key = { 499 + file = ../../secrets/pocket-id-encryption-key.age; 500 + owner = "pocket-id"; 501 + group = "pocket-id"; 502 + mode = "600"; 503 + }; 498 504 services.pocket-id = { 499 505 enable = true; 506 + package = unstable.pocket-id; 500 507 settings = { 501 508 TRUST_PROXY = true; 502 509 APP_URL = "https://id.ngp.computer"; 510 + ENCRYPTION_KEY_FILE = "${config.age.secrets.pocket-id-encryption-key.path}"; 503 511 }; 504 512 dataDir = "/srv/shokuhou/applications/pocket-id"; 505 513 };
+11
secrets/pocket-id-encryption-key.age
··· 1 + age-encryption.org/v1 2 + -> ssh-ed25519 e6zq8g BPoqhqE57dj2sdxbZha4USEScqPg9DRVLBNHDptw3zU 3 + isMV0nXeG5qOb/haG2xcfApHicpQYBojAeBQSR1bkPc 4 + -> ssh-ed25519 QBbeMw VzzDYc1KFv/GzF8uCZuzBznp2V1PClYjt8A0/6cs/1o 5 + 6xItDlFIDVEJDbxgnd4qne4VGFLjpM9mtzXP87iW/VY 6 + -> ssh-ed25519 Wv0Urw ZY3Mt4pblF3AjqRAv/hQj9nxkfGfDvlp3SuKstJ7nH8 7 + l4qnukc6+M8hpqxpH39TI86v3xBO/wS5tHxedqqHsKM 8 + -> ssh-ed25519 WVNCXA b7+KQUNa2N7FhXPZXxfJBAylsqVa7O1Qw6vp9mHQKVg 9 + mAmCeWfXUGeY69QyvvE4BpzpYgq7enTdHAvyxUHxhzA 10 + --- TvP2XhoblWLikIIXw+lR0oATTa8CTWgCrrCaQj3XDs8 11 + r��井K3]I�5�ʎSq��Yu���P����C����� \���tI�YMg�`�h���xQj\f �h�n2���
+1
secrets/secrets.nix
··· 31 31 "garage_metrics_secret.age".publicKeys = [ misaki ] ++ noah; 32 32 "victoria-secret.age".publicKeys = [ misaki ] ++ noah; 33 33 "obsidian-auth-token.age".publicKeys = [ misaki ] ++ noah; 34 + "pocket-id-encryption-key.age".publicKeys = [ misaki ] ++ noah; 34 35 }