added stuff
This commit is contained in:
parent
e8d9044d2b
commit
9d0ebdfbd0
907 changed files with 70990 additions and 0 deletions
25
nyx/flake/pkgs/startpage/default.nix
Normal file
25
nyx/flake/pkgs/startpage/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
lib,
|
||||
stdenvNoCC,
|
||||
}: let
|
||||
name = "schizofox-startpage";
|
||||
version = "2023-12-29-unstable";
|
||||
in
|
||||
stdenvNoCC.mkDerivation {
|
||||
inherit name version;
|
||||
src = ./src;
|
||||
|
||||
dontBuild = true;
|
||||
installPhase = ''
|
||||
runHook preInstall
|
||||
mkdir -p $out
|
||||
cp -rv $src/* $out
|
||||
runHook postInstall
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "My personal startpage";
|
||||
license = lib.licenses.gpl3Only;
|
||||
maintainers = with lib.maintainers; [NotAShelf];
|
||||
};
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue