Rename mkTarget's 'configElements' argument to 'config' and
'extraOptions' to 'options' to provide a more transparent interface with
the underlying Nixpkgs module system.
(cherry picked from commit 16df6b8448)
14 lines
319 B
Nix
14 lines
319 B
Nix
{ mkTarget, ... }:
|
|
mkTarget {
|
|
name = "eog";
|
|
humanName = "Eye of GNOME Image Viewer";
|
|
|
|
config =
|
|
{ colors }:
|
|
{
|
|
dconf.settings."org/gnome/eog/view" = {
|
|
# transparency = "background"; # Disables the grey and white check pattern.
|
|
background-color = "#${colors.base00}";
|
|
};
|
|
};
|
|
}
|