aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaran Jayachandra <mail@karanjayachandra.com>2026-07-17 16:53:58 +0200
committerKaran Jayachandra <mail@karanjayachandra.com>2026-07-17 16:53:58 +0200
commit66caa3368c4dfe8c579fadb8c6036edea5cb093b (patch)
tree3ccf81db654ed59f1289b917fe69c165811c4dba
parentdf244bfb92291bff0cec00f8ea83eb78bed4ec57 (diff)
Added the miniflux
-rw-r--r--README.md2
-rw-r--r--modules/miniflux.nix5
2 files changed, 6 insertions, 1 deletions
diff --git a/README.md b/README.md
index 31ec91c..5fb08d5 100644
--- a/README.md
+++ b/README.md
@@ -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";
+ };
}