Enable ssh sign on vm

This commit is contained in:
Nathan McCarty 2023-04-26 01:21:29 -04:00
parent 94a6643fc4
commit 3df790a53c
No known key found for this signature in database
1 changed files with 10 additions and 0 deletions

View File

@ -7,6 +7,7 @@
programs = {
media.enable = false;
util = { wine = true; };
git = { gpgSign = false; };
# games = { launcher = true; };
# media.nicotineService = true;
};
@ -59,4 +60,13 @@
# Lock mako notifs to main display
output = "Virtual-1";
};
# Setup git commit signing with ssh key
programs.git = {
extraConfig = {
commit.gpgsign = true;
gpg.format = "ssh";
user.signingkey = "~/.ssh/id_ed25519.pub";
};
};
}