nix-config/hosts/common/optional/desktop/xremap.nix

26 lines
347 B
Nix
Raw Normal View History

2023-12-27 10:57:55 +01:00
{
pkgs,
inputs,
...
}: {
imports = [
inputs.xremap.nixosModules.default
];
services.xremap = {
withX11 = true;
config = {
keymap = [
{
name = "main remaps";
remap = {
super-e = {
launch = ["firefox"];
};
};
}
];
};
};
}