fix boot devices steamdeck, add ykfde

This commit is contained in:
2023-09-28 19:29:50 +02:00
parent a82b2fac68
commit 6d47e49918
5 changed files with 60 additions and 8 deletions

View File

@@ -0,0 +1,11 @@
{ pkgs, lib, stdenv }:
stdenv.mkDerivation {
name = "ykfde";
src = ./scripts;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/bin
install -D --target $out/bin *
'';
}