15 lines
223 B
Nix
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;
|
|
};
|
|
};
|
|
}
|