mirror of
https://github.com/JulienMalka/snowfield.git
synced 2025-03-23 20:30:52 +01:00
added keywind theme
This commit is contained in:
parent
dcd58e5fac
commit
9964d49fbc
2 changed files with 19 additions and 0 deletions
|
@ -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 { };
|
||||
})
|
||||
];
|
||||
}
|
||||
|
|
18
packages/keycloak-keywind/default.nix
Normal file
18
packages/keycloak-keywind/default.nix
Normal 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
|
||||
'';
|
||||
}
|
Loading…
Add table
Reference in a new issue