nix-config/home/_mixins/desktop/emote.nix
Greg Burd 86706b1fc7 wimpy-ified
inspired by wimpysworld nix-config
2023-09-25 14:05:07 -04:00

22 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" ];
};
};
};
}