nixos_config/nixos/modules/compat/stylix-display-manager-generic.nix

13 lines
374 B
Nix

{ lib, ... }:
{
options.services.displayManager.generic.environment = lib.mkOption {
type = lib.types.attrsOf lib.types.anything;
default = { };
internal = true;
visible = false;
description = ''
Compatibility shim for older Stylix modules that still reference the
removed services.displayManager.generic.environment option.
'';
};
}