Revert "Group desktop modules"

This reverts commit 278904eec6.
This commit is contained in:
Oliver Davies 2025-11-22 16:23:37 +00:00
parent dc4a7189b4
commit cec818dcb1
56 changed files with 0 additions and 0 deletions

View file

@ -0,0 +1,35 @@
{ inputs, ... }:
{
flake.modules.homeManager.gui =
{ pkgs, ... }:
{
home.packages = [
(pkgs.stdenv.mkDerivation {
pname = "displayselect";
version = "unstable";
src = inputs.voidrice;
dontUnpack = true;
buildInputs = with pkgs; [
bash
xorg.xrandr
];
prePatch = ''
cp "$src/.local/bin/displayselect" displayselect
'';
patches = [ ./scaling.patch ];
installPhase = ''
mkdir -p $out/bin
cp displayselect $out/bin
chmod +x $out/bin/displayselect
'';
})
];
};
}