radicale path updates and updatekey command

This commit is contained in:
steveej 2024-01-25 00:09:06 +01:00
parent faf0818e00
commit eadfa1a28c
7 changed files with 179 additions and 9 deletions

18
nix/pkgs/logseq/flake.nix Normal file
View file

@ -0,0 +1,18 @@
{
inputs = {
utils.url = "github:numtide/flake-utils";
# clj2nix.url = "github:hlolli/clj2nix";
logseq.url = "github:logseq/logseq/0.5.9";
};
outputs = { nixpkgs, self, utils }: utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
# clj2nixBin = clj2nix.defaultPackage.${system};
in
{
packages = pkgs.callPackage ./default.nix { inherit self; };
nixpkgs = pkgs;
});
}