This commit is contained in:
Miguel Palhas
2026-05-26 09:35:21 +01:00
parent 4aa2e67794
commit 09b1b838b0
4 changed files with 97 additions and 83 deletions
+1
View File
@@ -20,6 +20,7 @@
./opencode
./yazi
./ssh.nix
./tmux.nix
];
home.mutableFilesRepoPath = "${config.home.homeDirectory}/projects/nixos-config";
+8
View File
@@ -38,6 +38,13 @@
core = {
editor = "nvim";
pager = "delta";
askpass = "";
};
credential = {
helper = "store";
};
"credential \"https://git.naps.pt\"" = {
helper = "!tea login helper";
};
merge = {
conflictstyle = "zdiff3";
@@ -65,6 +72,7 @@
delta
git-crypt
mediainfo
tea
];
home.sessionPath = [
"$HOME/.config/git/scripts"
+5
View File
@@ -0,0 +1,5 @@
{
programs.tmux = {
enable = true;
};
}