Skip to content

Commit

Permalink
Downgrade joplin-desktop to 2.12.16
Browse files Browse the repository at this point in the history
  • Loading branch information
m-bdf committed Dec 27, 2023
1 parent 7c8cc87 commit 5b157e1
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 2 deletions.
17 changes: 17 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

14 changes: 12 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,18 @@

inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
nixpkgs-joplin.url = "github:nixos/nixpkgs/517501bcf14ae6ec47efd6a17dda0ca8e6d866f9"; # 2.12.16

home-manager = {
url = "github:nix-community/home-manager";
inputs.nixpkgs.follows = "nixpkgs";
};
nur.url = "github:nix-community/NUR";
};

outputs = { nixpkgs, home-manager, nur, ... }: {
outputs = { nixpkgs, home-manager, nur, ... }@ inputs: {
nixosConfigurations = {
nixos = nixpkgs.lib.nixosSystem {
nixos = nixpkgs.lib.nixosSystem rec {
system = "x86_64-linux";

modules = [
Expand All @@ -29,6 +31,14 @@
extraSpecialArgs.nur = config.nur;
};
})

{
nixpkgs.overlays = [
(final: prev: {
inherit (inputs.nixpkgs-joplin.legacyPackages.${system}) joplin-desktop;
})
];
}
];
};
};
Expand Down

0 comments on commit 5b157e1

Please sign in to comment.