From 71002a2d146bbb3baf3a7a9575f898492ad7d5a3 Mon Sep 17 00:00:00 2001 From: Dmitriy Pleshevskiy Date: Wed, 15 Nov 2023 15:23:30 +0300 Subject: [PATCH] Revert "host/home: add octoprint draggable files plugin" This reverts commit 2a142a83f6ca9427e8633e7bbfdcbcba6c1a5423. --- nixos/hosts/home/default.nix | 15 +-------------- 1 file changed, 1 insertion(+), 14 deletions(-) diff --git a/nixos/hosts/home/default.nix b/nixos/hosts/home/default.nix index 66e9743..1cfcff5 100644 --- a/nixos/hosts/home/default.nix +++ b/nixos/hosts/home/default.nix @@ -119,19 +119,6 @@ services.octoprint = { enable = true; port = 33002; - plugins = ps: [ - ps.stlviewer - (ps.buildPlugin rec { - pname = "octoprint_draggable_files"; - version = "1.1.2"; - - src = pkgs.fetchFromGitHub { - owner = "SanderRonde"; - repo = "Octoprint-Draggable-Files"; - rev = version; - sha256 = "sha256-MCi+iLYQ1aVWe9ph+Lu1cGlGFGZ5e3fCp7PQ1lIGPr4="; - }; - }) - ]; + plugins = ps: [ ps.stlviewer ]; }; }