marleyos/modules/home/shell/xorg.nix

15 lines
235 B
Nix

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