2024-11-16 06:12:04 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
config,
|
|
|
|
...
|
2025-01-14 05:05:10 +00:00
|
|
|
}: let
|
2024-11-17 06:34:40 +00:00
|
|
|
cfg = config.marleyos.xorg.xsession;
|
2025-01-14 05:05:10 +00:00
|
|
|
in {
|
|
|
|
options.marleyos.xorg.xsession.enable = lib.mkEnableOption "xsession";
|
2024-11-16 06:12:04 +00:00
|
|
|
|
2025-01-14 05:05:10 +00:00
|
|
|
config = lib.mkIf cfg.enable {
|
2024-11-16 06:12:04 +00:00
|
|
|
xsession = {
|
|
|
|
enable = true;
|
|
|
|
|
|
|
|
numlock.enable = true;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|