mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 07:53:19 +00:00
efd23ff1c8
Some environments do not load /etc/profile, so environment.variables do not work. In particular, this is the case for Plasma Wayland. Use environment.sessionVariables for setting that variable instead, which is handled by PAM and hence more reliable.
29 lines
792 B
Nix
29 lines
792 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
let
|
|
cfg = config.services.xserver.gdk-pixbuf;
|
|
|
|
loadersCache = pkgs.gnome._gdkPixbufCacheBuilder_DO_NOT_USE {
|
|
extraLoaders = lib.unique (cfg.modulePackages);
|
|
};
|
|
in
|
|
|
|
{
|
|
options = {
|
|
services.xserver.gdk-pixbuf.modulePackages = lib.mkOption {
|
|
type = lib.types.listOf lib.types.package;
|
|
default = [ ];
|
|
description = lib.mdDoc "Packages providing GDK-Pixbuf modules, for cache generation.";
|
|
};
|
|
};
|
|
|
|
# If there is any package configured in modulePackages, we generate the
|
|
# loaders.cache based on that and set the environment variable
|
|
# GDK_PIXBUF_MODULE_FILE to point to it.
|
|
config = lib.mkIf (cfg.modulePackages != []) {
|
|
environment.sessionVariables = {
|
|
GDK_PIXBUF_MODULE_FILE = "${loadersCache}";
|
|
};
|
|
};
|
|
}
|