No description
  • Nix 93.2%
  • Shell 6.8%
Find a file
2025-06-11 19:30:40 +05:00
linux feat: first iteration 2025-06-11 19:23:04 +05:00
.gitignore feat: first iteration 2025-06-11 19:23:04 +05:00
flake.lock refactor: removed flake inputs 2025-06-11 19:30:40 +05:00
flake.nix refactor: removed flake inputs 2025-06-11 19:30:40 +05:00
README.md feat: first iteration 2025-06-11 19:23:04 +05:00

notion-app for NixOS

inspired from https://aur.archlinux.org/cgit/aur.git/tree/PKGBUILD?h=notion-app-electron

how to install:

  1. import flake in your config:
{
  inputs = {
      notion-app.url = "github:xinux-org/notion-app";
  };

  # ...
}
  1. import package:
{ pkgs, inputs, ... }: {
  environment.systemPackages = [
    pkgs.vim # this is an example

    inputs.notion-app.defaultPackage.x86_64-linux
  ];
}