mirror of
https://github.com/xinux-org/notion-app.git
synced 2026-02-16 00:49:43 +00:00
No description
- Nix 93.2%
- Shell 6.8%
| linux | ||
| .gitignore | ||
| flake.lock | ||
| flake.nix | ||
| README.md | ||
notion-app for NixOS
inspired from https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=notion-app-electron
how to install:
- import flake in your config:
{
inputs = {
notion-app.url = "github:xinux-org/notion-app";
};
# ...
}
- import package:
{ pkgs, inputs, ... }: {
environment.systemPackages = [
pkgs.vim # this is an example
inputs.notion-app.defaultPackage.x86_64-linux
];
}