This commit is contained in:
Lilith 2025-03-14 17:10:18 +01:00
parent 5d88fe7b77
commit 4f75ce9da5
Signed by: lilith
GPG key ID: 8712A0F317C37175
3 changed files with 19 additions and 5 deletions

View file

@ -1 +0,0 @@
{...}: {}

View file

@ -1,7 +1,7 @@
{zen-browser, system, pkgs, lib, ...}: { {zen-browser, system, pkgs, lib, ...}: {
imports = [ zen-browser.homeManagerModules.zen-browser ]; imports = [ zen-browser.homeManagerModules.zen-browser ];
home.file.".mozilla/native-messaging-hosts".source = lib.mkForce "/home/lilith/.mozilla/native-messaging-hosts"; # home.file.".mozilla/native-messaging-hosts".source = lib.mkForce "/home/lilith/.mozilla/native-messaging-hosts";
programs.zen-browser = { programs.zen-browser = {
enable = true; enable = true;

View file

@ -3,15 +3,30 @@
enable = true; enable = true;
lfs.enable = true; lfs.enable = true;
userName = "Lilith"; userName = "Lilith";
userEmail = "ole@benstem.de"; userEmail = "liv@benstem.de";
difftastic.enable = true; difftastic.enable = true;
signing = { signing = {
key = "3586D8D6689B9C9ECD598C588712A0F317C37175"; key = "3586D8D6689B9C9ECD598C588712A0F317C37175";
signByDefault = true; signByDefault = true;
}; };
extraConfig = { extraConfig = {
diff.algorithm = "histogram"; diff = {
diff.submodule = "log"; algorith = "histogram";
submodule = "log";
colorMoved = "plain";
renames = true;
};
push = {
autoSetupRemote = true;
followTags = true;
};
fetch = {
prune = true;
pruneTags = true;
all = true;
};
}; };
}; };
} }