git: added gnupg
This commit is contained in:
parent
917c7043ae
commit
d64ca1db3b
2 changed files with 7 additions and 2 deletions
|
@ -34,7 +34,7 @@
|
||||||
system = {
|
system = {
|
||||||
hostname = "temperance";
|
hostname = "temperance";
|
||||||
username = "vali";
|
username = "vali";
|
||||||
gitPath = "/home/vali/repos/nichts";
|
gitPath = "/home/vali/projects/nichts";
|
||||||
};
|
};
|
||||||
home-manager = {
|
home-manager = {
|
||||||
enable = true;
|
enable = true;
|
||||||
|
|
|
@ -1,7 +1,12 @@
|
||||||
{config, ...}: let
|
{
|
||||||
|
pkgs,
|
||||||
|
config,
|
||||||
|
...
|
||||||
|
}: let
|
||||||
inherit (config.modules.other.system) username;
|
inherit (config.modules.other.system) username;
|
||||||
in {
|
in {
|
||||||
home-manager.users.${username} = {
|
home-manager.users.${username} = {
|
||||||
|
home.packages = with pkgs; [gnupg];
|
||||||
programs.git = {
|
programs.git = {
|
||||||
signing = {
|
signing = {
|
||||||
key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILPiRe9OH/VtWFWyy5QbAVcN7CLxr4zUtRCwmxD6aeN6";
|
key = "ssh-ed25519 AAAAC3NzaC1lZDI1NTE5AAAAILPiRe9OH/VtWFWyy5QbAVcN7CLxr4zUtRCwmxD6aeN6";
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue