marleyos/modules/home/shell/xorg.nix
2025-05-26 17:04:43 -07:00

16 lines
268 B
Nix

{
lib,
config,
pkgs,
...
}: {
options.marleyos.shell.xorg.enable = lib.mkEnableOption "xorg";
config = lib.mkIf (config.marleyos.shell.xorg.enable && pkgs.stdenv.isLinux) {
xsession = {
enable = true;
numlock.enable = true;
};
};
}