Why Nostr? What is Njump?
2024-07-18 20:18:29
in reply to

pleblee on Nostr: Oh and I autostart it on boot with a systemd unit in my `configuration.nix`: ``` ...

Oh and I autostart it on boot with a systemd unit in my `configuration.nix`:

```
systemd = {
services.ollama-webui = {
wantedBy = [ "multi-user.target" ];
after = [ "network.target" ];
serviceConfig = {
Type = "forking";
User = "pleblee";
WorkingDirectory = "/home/blee/apps/open-webui";
Environment = "NIX_PATH=nixpkgs=/nix/var/nix/profiles/per-user/root/channels/nixos:nixos-config=/etc/nixos/configuration.nix:/nix/var/nix/profiles/per-user/root/channels";
};
script = "${pkgs.nix}/bin/nix-shell";
};
};
```
Author Public Key
npub1dxs2pygtfxsah77yuncsmu3ttqr274qr5g5zva3c7t5s3jtgy2xszsn4st