nixos-config/features/ema/emanote.nix
Sridhar Ratnakumar 170bc60696 update emanote
2021-09-12 17:42:55 -04:00

15 lines
377 B
Nix

{ pkgs, inputs, system, ... }:
{
systemd.user.services.emanote = {
description = "Emanote ~/Documents/Notes";
after = [ "network.target" ];
wantedBy = [ "default.target" ];
environment = {
PORT = "7000";
};
serviceConfig = {
Restart = "always";
ExecStart = "${emanote}/bin/emanote --layers /home/srid/Documents/Notes";
};
};
}