2020-09-18 17:20:45 +02:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
xsession.numlock.enable = true;
|
|
|
|
|
2021-09-26 11:08:45 +02:00
|
|
|
test.stubs.numlockx = { };
|
2020-09-18 17:20:45 +02:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
serviceFile=home-files/.config/systemd/user/numlockx.service
|
|
|
|
assertFileExists $serviceFile
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|