dotfiles/home-manager/modules/keynav/default.nix

21 lines
434 B
Nix
Raw Normal View History

{ pkgs, ... }:
{
home.file.".keynavrc".source = ./keynavrc;
systemd.user.services.keynav = {
Unit = {
Description = "keynav";
After = [ "graphical-session-pre.target" ];
PartOf = [ "graphical-session.target" ];
};
Service = {
ExecStart = "${pkgs.keynav}/bin/keynav";
RestartSec = 3;
Restart = "always";
};
Install = { WantedBy = [ "graphical-session.target" ]; };
};
}