mirror of
https://github.com/gburd/nix-config.git
synced 2024-11-14 16:36:24 +00:00
23 lines
413 B
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" ];
|
||
|
};
|
||
|
};
|
||
|
};
|
||
|
}
|