Kde: configure git-cola

This commit is contained in:
Toast 2024-03-12 10:43:19 +01:00
parent 34a9c49b17
commit 8c20418939
2 changed files with 14 additions and 0 deletions

View file

@ -7,6 +7,7 @@
./skanpage.nix
./neochat.nix
./konsole.nix
./git.nix
];
# Enable the kde partition manager

View file

@ -0,0 +1,13 @@
{ pkgs, lib, ... }:
{
home-manager.users.toast = {
programs.git = {
extraConfig = {
cola = {
terminal = "konsole";
};
};
};
};
}