From de71df85508834dbb93caaa88720f2a1cdd7054e Mon Sep 17 00:00:00 2001 From: DashieTM Date: Mon, 3 Jun 2024 13:12:45 +0200 Subject: [PATCH] nix: remove postinstall --- nix/keyboard.nix | 6 ------ nix/monitor.nix | 6 ------ 2 files changed, 12 deletions(-) diff --git a/nix/keyboard.nix b/nix/keyboard.nix index d0f338e..164f34c 100644 --- a/nix/keyboard.nix +++ b/nix/keyboard.nix @@ -59,12 +59,6 @@ rustPlatform.buildRustPackage rec { LIBCLANG_PATH = "${libclang.lib}/lib"; LD_LIBRARY_PATH = "${glib}/lib"; - postInstall = '' - mkdir -p $HOME/.config/reset - mkdir -p $HOME/.config/reset/plugins - ln -sf $out/target/release/lib${pname}_plugin.so $HOME/.config/reset/plugins/. - ''; - meta = with lib; { description = "A keyboard configuration plugin for the ReSet settings application."; homepage = "https://github.com/DashieTM/ReSet-Plugins"; diff --git a/nix/monitor.nix b/nix/monitor.nix index 8cbe8e4..314dea8 100644 --- a/nix/monitor.nix +++ b/nix/monitor.nix @@ -44,12 +44,6 @@ rustPlatform.buildRustPackage rec { copyLibs = true; - postInstall = '' - mkdir -p $HOME/.config/reset - mkdir -p $HOME/.config/reset/plugins - ln -sf $out/target/release/lib${pname}.so $HOME/.config/reset/plugins/. - ''; - meta = with lib; { description = "A monitor configuration plugin for the ReSet settings application."; homepage = "https://github.com/DashieTM/ReSet-Plugins";