No description
- Nix 100%
| flake.lock | ||
| flake.nix | ||
| LICENSE | ||
| package.nix | ||
| README.md | ||
Notion Repackaged for Nix
Warning
This project may not be well maintained.
nix version of notion-repackaged
Install
In your flake.nix:
{
inputs = {
# ...
notion-repackaged = {
url = "github:pikokr/nix-notion-repackaged";
inputs.nixpkgs.follows = "nixpkgs";
};
};
}
Somewhere you want to use this package:
{ inputs, ... }:
{
# ...
packages = [
inputs.notion-repackaged.packages.x86_64-linux.notion-repackaged
];
}