marleyos/modules/home/shell/xorg.nix
2025-05-26 15:12:15 -07:00

15 lines
223 B
Nix

{
lib,
config,
...
}: {
options.marleyos.xorg.enable = lib.mkEnableOption "xorg";
config = lib.mkIf config.marleyos.xorg.enable {
xsession = {
enable = true;
numlock.enable = true;
};
};
}