os/profiles/base-user/.config/git/gitmessage.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

33 lines
439 B
Nix
Raw Normal View History

{
config,
pkgs,
...
}: let
user = config.pub-solar.user;
xdg = config.home-manager.users."${user.name}".xdg;
in ''
# What happened?
#
# fix feat build chore ci docs style refactor perf test
#
# type!(optional scope): <description>
#
# ^\n
# What exactly was done and why?
2022-05-03 10:43:32 +00:00
#
# ^\n
#
# Any issue numbers or links?
2022-05-03 10:43:32 +00:00
#
# Refs: #123
2022-04-30 19:35:32 +00:00
# ^\n
2022-05-03 10:43:32 +00:00
#
# Co-authored-by: Example Name <email@example.com>
''