mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-09 15:16:26 +00:00
22 lines
413 B
Nix
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" ];
|
|
};
|
|
};
|
|
};
|
|
}
|