Revert "chore: remove manual catppuccin in favor of system wide configuration"

This reverts commit 1161933237.
This commit is contained in:
Alexandre Cavalheiro S. Tiago da Silva 2024-07-22 13:49:55 -03:00
parent 2838e06f07
commit 205119107f
Signed by: wizardlink
GPG key ID: A5767B54367CFBDF
16 changed files with 142 additions and 61 deletions

BIN
theming/sddm/Background.jpg Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 4.8 MiB

21
theming/sddm/default.nix Normal file
View file

@ -0,0 +1,21 @@
{ pkgs }:
let
image = ./Background.jpg;
in
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/
cd $out/
rm Background.jpg
cp -r ${image} $out/Background.jpg
'';
}