god only knows

This commit is contained in:
atagen 2022-12-02 11:51:00 +11:00
parent 2f2060aade
commit 37a11e11ff
23 changed files with 230 additions and 49 deletions

28
home/homepkgs/slice.nix Executable file
View file

@ -0,0 +1,28 @@
{ lib
, stdenv
, fetchFromGitHub
}:
stdenv.mkDerivation rec {
pname = "sddm-slice";
version = "1.5.1";
src = fetchFromGitHub {
owner = "EricKotato";
repo = pname;
rev = "v${version}";
sha256 = "sha256-IWwFsYqoqW3924+pf8L+acIt31aU/mhqakXbT9Q4Bqw=";
};
deployPhase = "
cp -r ./* /usr/share/sddm/themes/slice/
";
meta = with lib; {
description = "an sddm theme";
homepage = "somewhere.else";
license = licenses.mit;
maintainers = [];
platforms = platforms.all;
};
}