No description
Find a file
2025-04-21 14:16:05 +09:00
flake.lock fix: package version 2025-04-21 14:16:05 +09:00
flake.nix fix: package version 2025-04-21 14:16:05 +09:00
LICENSE Initial commit 2024-05-10 22:00:02 +09:00
package.nix fix: move result package to legacyPackages 2024-05-10 22:08:29 +09:00
README.md fix: typo 2024-05-10 22:20:46 +09:00

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
    ];
}