Files
nix-config/packages/profile-pic/default.nix
mjallen18 5d23b3db93 .face
2026-04-09 11:03:35 -05:00

31 lines
486 B
Nix
Executable File

{
lib,
stdenvNoCC,
}:
stdenvNoCC.mkDerivation {
pname = "profile-pic";
version = "1.0.0";
src = ./profile-pic.jpg;
dontUnpack = true;
dontBuild = true;
dontFixup = true;
installPhase = ''
runHook preInstall
mkdir -p "$out"
cp $src $out/profile-pic
runHook postInstall
'';
meta = with lib; {
description = "Profile Pic for Matt";
homepage = "https://authentik.mjallen.dev";
platforms = platforms.all;
maintainers = [ ];
};
}