/nixpaste

Pastebin powered by Nix

Primary LanguagePythonGNU General Public License v3.0GPL-3.0

nixpaste

Online pastebin here.

Pastebin powered by Python and deployed by Nix:

$ cd /home/nixpaste
$ git clone https://github.com/lethalman/nixpaste.git
$ nix-build
$ result/bin/nixpaste

Deployment on NixOS:

{
  imports = [
    /home/nixpaste/nixpaste/nixos-module.nix
  ];
  
  services.nixpaste = {
    enable = true;
    config = {
      storageDir = "/home/nixpaste/storage";
      url = "http://nixpaste.lbr.uno";
    };
  };
}

For development:

$ nix-shell dev.nix