new wm, hyprland gone

This commit is contained in:
Reid 2025-05-18 23:05:26 -07:00
parent 003f37bfbd
commit cb4b22b4e5
Signed by: reidlab
GPG key ID: DAF5EAF6665839FD
41 changed files with 1145 additions and 1364 deletions

View file

@ -1,26 +0,0 @@
{ lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation {
pname = "apple-firmware";
version = "unstable";
src = fetchFromGitHub {
owner = "AdityaGarg8";
repo = "Apple-Firmware";
rev = "70bdd14a778abade95544fc625f3cc2b9eef272a";
hash = "sha256-ktXMIgyfSgx/l+QQqKc9B7+SZkbZ1/ut7hH7ffjUTLc=";
};
installPhase = ''
mkdir -p "$out/lib/firmware/brcm"
cp -r "$src/lib/firmware/brcm/." "$out/lib/firmware/brcm/"
'';
meta = with lib; {
description = "Various apple broadcom drivers, ripped from a runner image";
homepage = "https://github.com/adityagarg8/apple-firmware";
# not sure about the licenses on these, questionable legality
# license = licenses.unfree;
platforms = platforms.all;
};
}

View file

@ -1,30 +0,0 @@
{ lib, stdenvNoCC, fetchFromGitHub }:
stdenvNoCC.mkDerivation {
pname = "lexica-ultralegible";
version = "1.0.0-unstable";
src = fetchFromGitHub {
owner = "jacobxperez";
repo = "lexica-ultralegible";
rev = "109729403ce6f5d9d74c6c6d8debc3380f3e3c10";
hash = "sha256-+mHIsmj2TL/sUVxUBsIqTK6D6GLgK4DgaiU9PTkgmUA=";
};
installPhase = ''
runHook preInstall
install -Dm644 -t $out/share/fonts/opentype fonts/otf/*
install -Dm644 -t $out/share/fonts/truetype fonts/ttf/*
install -Dm644 -t $out/share/fonts/woff2 fonts/web/*
runHook postInstall
'';
meta = with lib; {
description = "Maintained version of Atkinson Hyperlegible";
homepage = "https://jacobxperez.github.io/lexica-ultralegible/";
license = licenses.ofl;
platforms = platforms.all;
};
}