Skip to content

lucabrunox/nixpaste

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

44 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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