my nixos dotfiles :3 (git.koi.rip mirror) git.koi.rip/koi/dotfiles
linux dotfiles neovim nixos catppuccin
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

gitmessage: something

june ee564816 1e40ef21

+5 -10
-2
CODEOWNERS
··· 1 - * @koibtw 2 - external/scripts/nix-shell-generate.sh @sebaguardian
+3 -4
external/gitmessage.txt
··· 1 1 2 2 3 - # remember to set commit author to pr author when merging 3 + # Co-authored-by: user <user at users.noreply.github.com> 4 + # Signed-off-by: june <me at koi.rip> 4 5 # Reviewed-on: 5 - # Reviewed-by: june <me@koi.rip> 6 - # Signed-off-by: june <me@koi.rip> 7 - # Co-authored-by: user <user@users.noreply.github.com> 6 + # Reviewed-by: june <me at koi.rip>
+1 -3
home/modules/programs/git.nix
··· 64 64 remoteBranch = "magenta"; 65 65 }; 66 66 67 - commit.template = "~/.gitmessage"; 67 + commit.template = toString ../../../external/gitmessage.txt; 68 68 init.defaultBranch = "main"; 69 69 }; 70 70 }; ··· 74 74 settings.markEmptyLines = false; 75 75 }; 76 76 }; 77 - 78 - home.file.".gitmessage".source = ../../../external/gitmessage.txt; 79 77 }
+1 -1
home/modules/programs/jujutsu.nix
··· 65 65 concat( 66 66 builtin_draft_commit_description, 67 67 "${ 68 - builtins.replaceStrings [ "# " ] [ "JJ: " ] 68 + builtins.replaceStrings [ "# " " at " ] [ "JJ: " "@" ] 69 69 (builtins.readFile ../../../external/gitmessage.txt) 70 70 }", 71 71 "\nJJ: ignore-rest\n",