Compare commits

..

No commits in common. "4f5d77e8044ae9868b3ee89ec0846644de48532c" and "6ab350db0cf55e93564708c61ffeb19d8d2916da" have entirely different histories.

2 changed files with 9 additions and 14 deletions

View file

@ -37,16 +37,12 @@
}; };
taps = [ taps = [
"homebrew/cask-fonts" "homebrew/cask-fonts"
"homebrew-ffmpeg/ffmpeg"
#"null-dev/firefox-profile-switcher" #"null-dev/firefox-profile-switcher"
"theseal/ssh-askpass" "theseal/ssh-askpass"
]; ];
brews = [ brews = [
"fastfetch" "fastfetch"
{ "ffmpeg"
name = "homebrew-ffmpeg/ffmpeg/ffmpeg";
args = [ "with-srt" ];
}
#"firefox-profile-switcher-connector" # having had this on seems to mean I need to toggle browser.profiles.enabled to true in about:config for the new built in version #"firefox-profile-switcher-connector" # having had this on seems to mean I need to toggle browser.profiles.enabled to true in about:config for the new built in version
"mas" "mas"
"ssh-askpass" "ssh-askpass"

View file

@ -133,6 +133,9 @@ in
gh.enable = true; gh.enable = true;
git = { git = {
enable = true; enable = true;
settings = {
diff.sopsdiffer.textconv = "sops --config /dev/null --decrypt";
};
ignores = [ ignores = [
"*~" "*~"
"*.swp" "*.swp"
@ -142,17 +145,9 @@ in
lfs.enable = true; lfs.enable = true;
package = pkgs.gitFull; package = pkgs.gitFull;
settings = { settings = {
diff.sopsdiffer.textconv = "sops --config /dev/null --decrypt";
init = { init = {
defaultBranch = "main"; defaultBranch = "main";
}; };
commit = {
gpgsign = true;
};
gpg = {
format = "ssh";
};
merge = { merge = {
conflictStyle = "diff3"; conflictStyle = "diff3";
tool = "meld"; tool = "meld";
@ -162,7 +157,11 @@ in
}; };
user = { user = {
name = "Gene Liverman"; name = "Gene Liverman";
signingkey = "${config.home.homeDirectory}/.ssh/id_ed25519.pub"; };
signing = {
format = "ssh";
key = "${config.home.homeDirectory}/.ssh/id_ed25519";
signByDefault = true;
}; };
}; };
}; # end git }; # end git