resuming system configuration

This commit is contained in:
2025-08-31 21:52:27 -06:00
parent 23e168431d
commit 368f5d9f46
4 changed files with 31 additions and 9 deletions

View File

@@ -0,0 +1,16 @@
{stdenv, fetchFromGithub, ...}:
{
sddm-andromeda = stdenv.mkDerivation rec {
pname = "sddm-andromeda-theme";
dontBuild = true;
installPhase = ''
mkdir -p $out/share/sddm/themes
cp -aR $src $out/share/sddm/themes/andromeda
'';
src = fetchFromGithub {
owner = "EliverLara";
repo = "Andromeda-KDE";
};
};
}