Enable ssh sign on vm
This commit is contained in:
parent
94a6643fc4
commit
3df790a53c
|
@ -7,6 +7,7 @@
|
||||||
programs = {
|
programs = {
|
||||||
media.enable = false;
|
media.enable = false;
|
||||||
util = { wine = true; };
|
util = { wine = true; };
|
||||||
|
git = { gpgSign = false; };
|
||||||
# games = { launcher = true; };
|
# games = { launcher = true; };
|
||||||
# media.nicotineService = true;
|
# media.nicotineService = true;
|
||||||
};
|
};
|
||||||
|
@ -59,4 +60,13 @@
|
||||||
# Lock mako notifs to main display
|
# Lock mako notifs to main display
|
||||||
output = "Virtual-1";
|
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