Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/paring-chan/nix-notion-repackaged
https://github.com/paring-chan/nix-notion-repackaged
Last synced: 4 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/paring-chan/nix-notion-repackaged
- Owner: paring-chan
- License: mit
- Created: 2024-05-10T12:58:28.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-05-10T13:20:56.000Z (8 months ago)
- Last Synced: 2024-12-31T07:45:54.298Z (5 days ago)
- Language: Nix
- Size: 3.91 KB
- Stars: 0
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Notion Repackaged for Nix
> [!WARNING]
> This project may not be well maintained.nix version of [notion-repackaged](https://github.com/dusansimic/notion-repackaged)
## Install
In your flake.nix:
```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
];
}
```