dotfiles/nixos/mercurial/home.nix

18 lines
284 B
Nix
Raw Normal View History

2020-08-01 10:16:16 +01:00
{ config, pkgs, ... }:
{
programs.mercurial = {
enable = true;
userName = "Cyryl Płotnicki";
2020-11-14 11:37:55 +00:00
userEmail = "cyplo@cyplo.dev";
2020-08-01 10:16:16 +01:00
extraConfig = ''
[extensions]
hgext.convert=
2020-11-14 11:10:59 +00:00
[ui]
paginate = never
2020-08-01 10:16:16 +01:00
'';
aliases =
{
};
};
}