nix-config/home-manager/_mixins/desktop/meld.nix

20 lines
384 B
Nix

{ lib, pkgs, ... }:
with lib.hm.gvariant;
{
home.packages = with pkgs; [
meld
];
dconf.settings = {
"org/gnome/meld" = {
indent-width = 4;
insert-spaces-instead-of-tabs = true;
highlight-current-line = true;
show-line-numbers = true;
prefer-dark-theme = true;
highlight-syntax = true;
style-scheme = "Yaru-dark";
};
};
}