added importing ssh keys

This commit is contained in:
2025-10-04 00:56:09 -05:00
parent 2c381a6544
commit 90dad5dd21

View File

@@ -70,6 +70,12 @@
};
};
};
# import sshkeys from keyring
home.file.".ssh/id_rsa".text = builtins.readFile /home/blake/.nix/.keyring/ssh/id_snowbelle;
home.file.".ssh/id_rsa".mode = "0600";
home.file.".ssh/id_rsa.pub".text = builtins.readFile /home/blake/.nix/.keyring/ssh/id_snowbelle.pub;
home.file.".ssh/id_rsa.pub".mode = "0644";
# configure git
programs.git = {