Fix waringings

This commit is contained in:
muon 2026-03-08 10:28:46 +00:00
parent 399417d93a
commit 6c635de326
6 changed files with 11 additions and 4 deletions

View file

@ -10,6 +10,8 @@ in {
mods.xdg.enable = true;
mods.social.enable = true;
mods.i3.enable = true;
mods.terminal.wezterm.enable = true;
mods.terminal.nushell.enable = true;
mods.terminal.zsh.enable = true;
mods.terminal.emulator.enable = true;
mods.terminal.development.enable = true;
@ -71,8 +73,10 @@ in {
# SSH: auto-add work key to gpg-agent on first use
programs.ssh = {
enable = true;
addKeysToAgent = "yes";
matchBlocks."*".identityFile = "~/.ssh/work_ed25519";
matchBlocks."*" = {
identityFile = "~/.ssh/work_ed25519";
addKeysToAgent = "yes";
};
matchBlocks."muho".identityFile = "~/.ssh/id_ed25519";
};