feat: add rofi, fonts, dunst config, gtk theme

This commit is contained in:
2025-06-17 23:13:01 -07:00
parent a091cf8a79
commit 9a530d15de
18 changed files with 595 additions and 11 deletions

View File

@@ -0,0 +1,12 @@
{ stdenv, lib }:
stdenv.mkDerivation {
pname = "custom-fonts";
version = "0.1.0";
src = ../../custom/fonts;
installPhase = ''
mkdir -p $out/share/fonts
cp -r $src/* $out/share/fonts
'';
}