added keywind theme

This commit is contained in:
Julien Malka 2023-05-21 18:16:16 +02:00
parent dcd58e5fac
commit 9964d49fbc
Signed by: Luj
GPG key ID: 6FC74C847011FD83
2 changed files with 19 additions and 0 deletions

View file

@ -57,6 +57,7 @@ in
hyprpaper = inputs.hyprpaper.packages.${system}.default;
attic = inputs.attic.packages.${system}.default;
nil = inputs.nil.packages.${system}.default;
keycloak-keywind = prev.pkgs.callPackage ../packages/keycloak-keywind { };
})
];
}

View file

@ -0,0 +1,18 @@
{ stdenv, fetchFromGitHub }:
stdenv.mkDerivation {
pname = "keywind-theme";
version = "git";
src = fetchFromGitHub {
owner = "lukin";
repo = "keywind";
rev = "f7d5b2d753524802481e49e0e967af39a5088de0";
sha256 = "sha256-7+8QeTFi9KgSUSdjOQakBIwhjQt4hjQUIMzQDcsBOpc=";
};
installPhase = ''
mkdir $out
cp -r ./theme/keywind/* $out
'';
}