72904c318c
GitOrigin-RevId: 9bf1f40af124573a54fd208b1f539eb694ef31a6
18 lines
340 B
Nix
18 lines
340 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
config = {
|
|
xsession.numlock.enable = true;
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: { numlockx = pkgs.writeScriptBin "dummy-numlockx" ""; })
|
|
];
|
|
|
|
nmt.script = ''
|
|
serviceFile=home-files/.config/systemd/user/numlockx.service
|
|
assertFileExists $serviceFile
|
|
'';
|
|
};
|
|
}
|