restructuring

This commit is contained in:
maxstrb 2025-08-05 22:07:42 +02:00
parent bd6c9e6d7e
commit 31b1b98809
15 changed files with 260 additions and 233 deletions

View file

@ -0,0 +1,15 @@
{pkgs}:
pkgs.stdenv.mkDerivation {
name = "sddm-theme";
src = pkgs.fetchFromGitHub {
owner = "MarianArlt";
repo = "sddm-sugar-dark";
rev = "ceb2c455663429be03ba62d9f898c571650ef7fe";
sha256 = "0153z1kylbhc9d12nxy9vpn0spxgrhgy36wy37pk6ysq7akaqlvy";
};
installPhase = ''
mkdir -p $out
cp -R ./* $out/
'';
}