diff options
| author | Karan Jayachandra <mail@karanjayachandra.com> | 2026-07-17 16:53:58 +0200 |
|---|---|---|
| committer | Karan Jayachandra <mail@karanjayachandra.com> | 2026-07-17 16:53:58 +0200 |
| commit | 66caa3368c4dfe8c579fadb8c6036edea5cb093b (patch) | |
| tree | 3ccf81db654ed59f1289b917fe69c165811c4dba | |
| parent | df244bfb92291bff0cec00f8ea83eb78bed4ec57 (diff) | |
Added the miniflux
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | modules/miniflux.nix | 5 |
2 files changed, 6 insertions, 1 deletions
@@ -419,7 +419,7 @@ Push the updated `.sops.yaml` and re-encrypted `secrets/secrets.yaml`, then run: nixos-rebuild switch --flake .#eurovm \ --target-host admin@<server-ipv4> \ --build-host admin@<server-ipv4> \ - --use-remote-sudo + --elevate=sudo ``` ### Step 8 - First login to each service diff --git a/modules/miniflux.nix b/modules/miniflux.nix index 8020a75..3db3e7e 100644 --- a/modules/miniflux.nix +++ b/modules/miniflux.nix @@ -30,4 +30,9 @@ CLEANUP_ARCHIVE_READ_DAYS = "90"; }; }; + + users.users.miniflux = { + isSystemUser = true; + group = "miniflux"; + }; } |
