nix-config/home-manager/_mixins/desktop/emote.nix

23 lines
413 B
Nix

{ pkgs, ... }:
{
# https://github.com/tom-james-watson/emote
home.packages = with pkgs.unstable; [
emote
];
systemd.user.services = {
emote = {
Unit = {
Description = "Emote";
};
Service = {
ExecStart = "${pkgs.unstable.emote}/bin/emote";
Restart = "on-failure";
};
Install = {
WantedBy = [ "default.target" ];
};
};
};
}