From 1dfdd8da67fc9138a198993eccfb161d58dcfbf2 Mon Sep 17 00:00:00 2001 From: sadan <117494111+sadan4@users.noreply.github.com> Date: Sat, 26 Apr 2025 17:24:19 -0400 Subject: [PATCH] yeah, it doesn't work --- common/users/homeModules/sharex.nix | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 common/users/homeModules/sharex.nix diff --git a/common/users/homeModules/sharex.nix b/common/users/homeModules/sharex.nix new file mode 100644 index 0000000..705f779 --- /dev/null +++ b/common/users/homeModules/sharex.nix @@ -0,0 +1,10 @@ +# SETUP GUIDE HERE https://github.com/ShareX/ShareX/issues/6531 +{ pkgs, ... }: +{ + home = { + packages = with pkgs; [ + wine + winetricks + ]; + }; +}