nix-config/home/_mixins/desktop/meld.nix
Greg Burd 86706b1fc7 wimpy-ified
inspired by wimpysworld nix-config
2023-09-25 14:05:07 -04:00

19 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";
};
};
}