1
Fork 0
satellite/modules/applications/xmodmap/default.nix

9 lines
243 B
Nix
Raw Normal View History

2021-07-18 01:58:38 +02:00
{ pkgs, ... }: {
home-manager.users.adrielus.home = {
packages = [ pkgs.xorg.xmodmap ];
file.".Xmodmap".source = ./.Xmodmap;
};
services.xserver.displayManager.sessionCommands =
"${pkgs.xorg.xmodmap}/bin/xmodmap .Xmodmap";
}