mirror of
https://github.com/srid/nixos-config.git
synced 2026-01-07 08:37:34 +08:00
15 lines
377 B
Nix
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";
|
|
};
|
|
};
|
|
}
|