mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-09 15:16:26 +00:00
19 lines
384 B
Nix
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";
|
|
};
|
|
};
|
|
}
|