Merge branch 'main' of git.stuce.ch:stuce/sTodo

This commit is contained in:
Stuce 2025-07-02 16:54:59 +01:00
commit f0951506a0
2 changed files with 4 additions and 4 deletions

View file

@ -4,8 +4,7 @@ The goal is to provide a minimalistic and fast todo list that is self hostable.
## Next goals
- Make multi user support
- [x] Get user by trusted header
- [ ] Add option to enable single user (usefull for vpn single user easy setup)
- [ ] Add menu to add other users to the group
- [x] Add menu to add other users to the group
- [ ] make the code more readable by renaming/moving the handlers better
- [ ] write a minimal step by step guide to install with nix,
- [ ] add some css to make it look nicer

View file

@ -10,8 +10,8 @@
nixpkgs,
}: let
tarball = fetchTarball {
url = "https://git.stuce.ch/stuce/sTodo/releases/download/r2/release2.tar.gz";
sha256 = "11mmq60w5da42mzlckizbrgnpzzj8a8jz69ap5k86zh6a536v456";
url = "https://git.stuce.ch/stuce/sTodo/releases/download/r3/r3.tar.gz";
sha256 = "1imgbbgbgx2r8qr90mpxlwfy9hcfpdz0sa4nir05jhqx8q1rl0y1";
};
in {
packages.x86_64-linux.sTodo = with nixpkgs.legacyPackages.x86_64-linux;
@ -24,6 +24,7 @@
installPhase = ''
mkdir -p $out/bin
cp $src/sTodo $out/bin
chmod ugo+x $out/bin/sTodo
'';
mainProgram = "sTodo";
};