Skip to content

Instantly share code, notes, and snippets.

@MichaelXavier
Created January 27, 2020 00:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save MichaelXavier/2f1124bee8443e47776bd0a7fec123c4 to your computer and use it in GitHub Desktop.
Save MichaelXavier/2f1124bee8443e47776bd0a7fec123c4 to your computer and use it in GitHub Desktop.
filebot configuration.nix
{ config, pkgs, ... }:
let
filebot-drv = builtins.fetchTarball {
url = "https://github.com/michaelxavier/filebot-nix/archive/370240f12f6dc21a31d0d2855df8457313f9f517.tar.gz";
sha256 = "0z78bqa83b75ysi0bxzwjsk9bwpmh7pm9ywihw1k8clj97gfikzz";
};
filebot = pkgs.callPackage (import filebot-drv) {};
in
{
environment.systemPackages = with pkgs; [
filebot
];
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment