added niri config

This commit is contained in:
chloe 2025-04-19 11:42:22 +02:00
parent 2694935f92
commit 5642f166f0
3 changed files with 94 additions and 5 deletions

28
packages/4get.nix Normal file
View file

@ -0,0 +1,28 @@
{ stdenv, fetchFromGitea }:
stdenv.mkDerivation {
pname = "4get";
version = "1.2.6";
src = {
owner = "lolcat";
domain = "git.lolcat.ca";
repo = "4get";
rev = "1.2.6";
hash = "sha256-OQjjOc9VnxJ7tWNmpHIMzNWX6WsavAOkgPwK1XAMwtE=";
};
installPhase = ''
runHook preInstall
cd lolcat
mkdir -p $out/share/icons/miku-cursor-linux
cp -r * $out/share/icons/miku-cursor-linux
install -m644 index.theme $out/share/icons/miku-cursor-linux/index.theme
runHook postInstall
'';
}