diff --git a/README.md b/README.md index 7579f1c..540f08f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/flake.nix b/flake.nix index 243cf0c..d5dd9c9 100644 --- a/flake.nix +++ b/flake.nix @@ -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"; };