This commit is contained in:
2025-09-01 08:57:26 -06:00
parent 368f5d9f46
commit 03a49beb1f
4 changed files with 10 additions and 34 deletions

View File

@@ -1,16 +0,0 @@
{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";
};
};
}

View File

@@ -5,7 +5,4 @@
enable = true;
wayland.enable = true;
};
environment.systemPackages = with pkgs; [
(callPackage ./andromeda.nix)
];
}