nix/config/DisplayManager.nix

18 lines
252 B
Nix
Raw Normal View History

{
2024-11-04 04:37:29 +03:00
config,
lib,
...
}: let
2024-11-07 12:12:53 +03:00
cfg = config.module.dm;
2024-11-04 04:37:29 +03:00
in {
config = lib.mkIf cfg.enable {
services.xserver = {
enable = true;
xkb = {
layout = config.module.keyboard.layouts;
options = config.module.keyboard.options;
};
};
};
2024-03-28 07:51:33 +03:00
}