-
-
Notifications
You must be signed in to change notification settings - Fork 15.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
nixos/wallabag: init #54863
nixos/wallabag: init #54863
Conversation
0e9c118
to
3091fa6
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hi,
Just a note: I didn’t check the effect of the WALLABAG_DATA environment variable, so I may be wrong, but wallabag install expects to be able write to: ./var, ./data (sqlite database) and ./web/assets (for thumbnail images).
Could you check that modifying only WALLABAG_DATA is enough to handle the three locations?
I have the service running with this configuration on my server, and so far it seems to work well. I have only tried with postgresql, but sqlite should work since you can override the database location as needed. |
@Nadrieril : how about the assets? It may be unseen if you don’t watch for it. If you want an example, you can try to import https://nvie.com/posts/a-successful-git-branching-model/ in your wallabag. It should show a custom (not wallabag default) thumbnail in the list |
Oh, well spotted ! The assets get stored correctly under |
Thanks for the confirmation @Nadrieril |
Ah yes, it's not from wallabag itself; it was added in the nix package (though not by me):
|
Oh that’s why, thanks a lot! |
}; | ||
|
||
poolConfig = mkOption { | ||
type = types.lines; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could be turned into an attrset that's automatically turned into lines via something like toKeyValue {} cfg.poolConfig
. This could make the merging behavior more pleasant.
''; | ||
}; | ||
|
||
conf = mkOption { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This might deserve an example
, or at least a link to wallabag's docs in the description.
@@ -208,6 +208,7 @@ in | |||
upnp = handleTest ./upnp.nix {}; | |||
vault = handleTest ./vault.nix {}; | |||
virtualbox = handleTestOn ["x86_64-linux"] ./virtualbox.nix {}; | |||
wallabag = handleTestOn ["x86_64-linux"] ./wallabag.nix {}; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Does wallabag work only on x86_64-linux
?
database_port: null | ||
database_name: wallabag | ||
database_user: wallabag | ||
database_password: password |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there a way to not put the database password in the store? I'm thinking it might make sense to just pass the path to the wallabag config file instead of passing the whole file here, in a manner similar to networking.supplicant.*.configFile.path
, for security reasons.
@Nadrieril are you motivated to continue with this PR? |
@aanderse Not any more, sorry. You're welcome to take over if you're interested |
@Nadrieril sorry to hear things didn't work out. I'll close this PR as it isn't being pursued any longer. |
Motivation for this change
wallabag
is a convenient little service that allows to save links to read them later. It has an android app and a firefox extension.This PR adds a module that sets up a wallabag instance with nginx and php-fpm. I also added a nixos test.
Things done
sandbox
innix.conf
on non-NixOS)nix-shell -p nox --run "nox-review wip"
./result/bin/
)nix path-info -S
before and after)