fix: sign again with jujutsu

This commit is contained in:
2025-11-05 04:42:14 +01:00
parent 87047b5b1b
commit fc2407940c
2 changed files with 16 additions and 4 deletions

View File

@@ -1,6 +1,7 @@
{
pkgs,
config,
lib,
...
}: {
imports = [
@@ -69,6 +70,17 @@
vcs.jj.signing.enable = true;
};
fullDesktop = true;
file."${config.home.homeDirectory}/.ssh/allowed_signers" = {
enable = true;
text = lib.strings.join "\n" (
map (file: let
content = lib.strings.trim (builtins.readFile file);
parts = lib.strings.splitString " " content;
email = lib.lists.last parts;
in "${email} namespaces=\"git\" ${content}")
(lib.filesystem.listFilesRecursive ../../keys)
);
};
};
manual = {