remove redundant xkeysnail config

This commit is contained in:
Schrottkatze 2023-11-14 13:15:34 +01:00
parent f536524d37
commit d9c9e8877d

View file

@ -1,26 +0,0 @@
{ config, lib, pkgs, ... }:
{
config = {
services.xserver.windowManager.i3.extraPackages = with pkgs; [
xkeysnail
xorg.xhost
xorg.setxkbmap
];
home-manager.users.jade = { pkgs, ... }: {
xsession.windowManager.i3.config.startup = [
{
command = "xhost +";
}
{
command = "${pkgs.xkeysnail}/bin/xkeysnail ${../../other/xkeysnail.py}";
always = true;
}
{
command = "sleep 4 && setxkbmap -layout us -variant altgr-intl";
always = true;
}
];
};
};
}