working mpd and beet!
This commit is contained in:
parent
17b406b878
commit
ad1b1089af
25 changed files with 659 additions and 16 deletions
26
modules/gui/schizofox/package.nix
Normal file
26
modules/gui/schizofox/package.nix
Normal file
|
@ -0,0 +1,26 @@
|
|||
# Stolen from Raf, kinda
|
||||
{
|
||||
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