|
@@ -3,13 +3,29 @@
|
|
|
home.packages = [
|
|
home.packages = [
|
|
|
pkgs.git
|
|
pkgs.git
|
|
|
pkgs.git-crypt
|
|
pkgs.git-crypt
|
|
|
|
|
+ pkgs.codeberg-cli
|
|
|
];
|
|
];
|
|
|
|
|
|
|
|
|
|
+ programs.gh.enable = true;
|
|
|
|
|
+
|
|
|
programs.git = {
|
|
programs.git = {
|
|
|
enable = true;
|
|
enable = true;
|
|
|
userName = "Thomas Stachl";
|
|
userName = "Thomas Stachl";
|
|
|
userEmail = "[email protected]";
|
|
userEmail = "[email protected]";
|
|
|
|
|
|
|
|
|
|
+ includes = [{
|
|
|
|
|
+ condition = "gitdir/i:~/workspace/aesir/**";
|
|
|
|
|
+ contents = {
|
|
|
|
|
+ core.sshCommand = "ssh -i ~/.ssh/id_aesirdev";
|
|
|
|
|
+ user = {
|
|
|
|
|
+ email = "[email protected]";
|
|
|
|
|
+ name = "Æsir Dev";
|
|
|
|
|
+ signingKey = "58145313C9636027";
|
|
|
|
|
+ };
|
|
|
|
|
+ commit.gpgSign = true;
|
|
|
|
|
+ };
|
|
|
|
|
+ }];
|
|
|
|
|
+
|
|
|
signing = {
|
|
signing = {
|
|
|
key = "ED5EAAA8E895B23A";
|
|
key = "ED5EAAA8E895B23A";
|
|
|
signByDefault = true;
|
|
signByDefault = true;
|