feat: add printer stuff

This commit is contained in:
2024-02-03 18:03:54 +01:00
parent da3501c0ee
commit e671e2e081
10 changed files with 164 additions and 29 deletions

View File

@@ -9,7 +9,6 @@
libxcrypt
# browsers
firefox-wayland
chromium
brave
@@ -60,6 +59,11 @@
avalonia-ilspy
ghidra
# 3d printing
lpc21isp
dfu-util
cura
# gaming
steam
oversteer

View File

@@ -1,21 +0,0 @@
{
lib,
stdenv,
fetchFromGitHub,
pkgs,
}:
stdenv.mkDerivation rec {
name = "firefox-gnome-theme";
version = "116.0.0";
src = fetchFromGitHub {
owner = "rafaelmardojai";
repo = "firefox-gnome-theme";
sparseCheckout = ["scripts"];
rev = "v116";
sha256 = "0IS5na2WRSNWNygHhmZOcXhdrx2aFhCDQY8XVVeHf8Q=";
};
installPhase = ''
mkdir -p $out/bin
cp scripts/install-by-curl.sh $out/bin/install-firefox-gnome-theme
'';
}