26 lines
347 B
Nix
26 lines
347 B
Nix
|
{
|
||
|
pkgs,
|
||
|
inputs,
|
||
|
...
|
||
|
}: {
|
||
|
imports = [
|
||
|
inputs.xremap.nixosModules.default
|
||
|
];
|
||
|
|
||
|
services.xremap = {
|
||
|
withX11 = true;
|
||
|
config = {
|
||
|
keymap = [
|
||
|
{
|
||
|
name = "main remaps";
|
||
|
remap = {
|
||
|
super-e = {
|
||
|
launch = ["firefox"];
|
||
|
};
|
||
|
};
|
||
|
}
|
||
|
];
|
||
|
};
|
||
|
};
|
||
|
}
|