system76 scheduler

This commit is contained in:
atagen 2023-01-12 10:12:50 +11:00
parent 2faec8579a
commit ec067ee460
10 changed files with 218 additions and 105 deletions

View file

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