Enable ssh sign on vm
This commit is contained in:
parent
94a6643fc4
commit
3df790a53c
|
@ -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";
|
||||
};
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue