chore: update flake.lock; prepare for 25.11 migration

This commit is contained in:
2025-10-19 16:21:25 +08:00
parent 41969ab2e0
commit 959956409d
9 changed files with 101 additions and 96 deletions

View File

@@ -18,20 +18,22 @@ lib.my.makeHomeProgramConfig {
extraConfig = {
my.hm = {
programs.git = {
userName = "${userfullname}";
userEmail = "${useremail}";
signing = {
format = "ssh";
signByDefault = true;
key = "/home/${username}/.ssh/id_ed25519";
};
extraConfig = {
push.autoSetupRemote = true;
settings = {
gpg.ssh.allowedSignersFile =
(pkgs.writeText "allowed_signers" ''
imxyy1soope1@gmail.com ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOEFLUkyeaK8ZPPZdVNEmtx8zvoxi7xqS2Z6oxRBuUPO imxyy@imxyy-nix
imxyy@imxyy.top ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAIOEFLUkyeaK8ZPPZdVNEmtx8zvoxi7xqS2Z6oxRBuUPO imxyy@imxyy-nix
'').outPath;
push.autoSetupRemote = true;
user = {
name = userfullname;
email = useremail;
};
};
signing = {
format = "ssh";
signByDefault = true;
key = "/home/${username}/.ssh/id_ed25519";
};
};
programs.lazygit = {
@@ -39,4 +41,4 @@ lib.my.makeHomeProgramConfig {
};
};
};
}
}