Compare commits
No commits in common. "36df032ecd409b29f30c1a589d3e44c508e98417" and "38ff39bc783368ab535fadb4ccb828f1f0958275" have entirely different histories.
36df032ecd
...
38ff39bc78
|
@ -1,9 +1,6 @@
|
||||||
{ pkgs, lib, config, ... }:
|
{ pkgs, lib, config, ... }:
|
||||||
let
|
|
||||||
cfg = config.programs.git;
|
|
||||||
in
|
|
||||||
{
|
{
|
||||||
config = lib.mkIf cfg.enable {
|
config = lib.mkIf config.programs.git.enable {
|
||||||
home.packages = [
|
home.packages = [
|
||||||
(pkgs.writeShellApplication {
|
(pkgs.writeShellApplication {
|
||||||
name = "git-sync";
|
name = "git-sync";
|
||||||
|
@ -29,8 +26,7 @@ in
|
||||||
);
|
);
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
programs = {
|
programs.git = {
|
||||||
git = {
|
|
||||||
package = pkgs.gitFull;
|
package = pkgs.gitFull;
|
||||||
aliases = {
|
aliases = {
|
||||||
"git" = "!exec git"; # In case I write one too many git
|
"git" = "!exec git"; # In case I write one too many git
|
||||||
|
@ -71,29 +67,6 @@ in
|
||||||
# This escapes quotes, which isn't the case in the original, hoping this isn't an issue.
|
# This escapes quotes, which isn't the case in the original, hoping this isn't an issue.
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
jujutsu = {
|
|
||||||
enable = true;
|
|
||||||
settings = {
|
|
||||||
git.auto-local-bookmark = true;
|
|
||||||
user = {
|
|
||||||
email = cfg.userEmail;
|
|
||||||
name = cfg.userName;
|
|
||||||
};
|
|
||||||
ui = {
|
|
||||||
pager = "delta";
|
|
||||||
diff.format = "git";
|
|
||||||
diff-editor = "meld-3";
|
|
||||||
merge-editor = "meld";
|
|
||||||
};
|
|
||||||
signing = {
|
|
||||||
sign-all = true;
|
|
||||||
backend = "gpg";
|
|
||||||
inherit (cfg.signing) key;
|
|
||||||
backends.gpg.allow-expired-keys = false;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
|
||||||
services = {
|
services = {
|
||||||
git-sync = {
|
git-sync = {
|
||||||
enable = false; # The real thing syncs too quickly and asks for passphrase, which is annoying
|
enable = false; # The real thing syncs too quickly and asks for passphrase, which is annoying
|
||||||
|
|
Loading…
Reference in a new issue