2020-10-12 00:22:58 +00:00
|
|
|
{ config, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
|
|
|
|
{
|
|
|
|
config = {
|
|
|
|
xsession.numlock.enable = true;
|
|
|
|
|
2021-11-04 16:42:44 +00:00
|
|
|
test.stubs.numlockx = { };
|
2020-10-12 00:22:58 +00:00
|
|
|
|
|
|
|
nmt.script = ''
|
|
|
|
serviceFile=home-files/.config/systemd/user/numlockx.service
|
|
|
|
assertFileExists $serviceFile
|
|
|
|
'';
|
|
|
|
};
|
|
|
|
}
|