feat: shuffle icon on AudioPlayer, New Home Screen

This commit is contained in:
2025-06-26 22:17:39 +00:00
parent e88d8b226e
commit a4662a348a
5 changed files with 63 additions and 4 deletions

39
.idx/dev.nix Normal file
View File

@@ -0,0 +1,39 @@
{ pkgs, ... }: {
# Which nixpkgs channel to use.
channel = "stable-23.11"; # or "unstable"
# Use https://search.nixos.org/packages to find packages
packages = [
pkgs.corepack
];
# Sets environment variables in the workspace
# env = {
# SOME_ENV_VAR = "hello";
# };
# Search for the extensions you want on https://open-vsx.org/ and use "publisher.id"
# idx.extensions = [
# "angular.ng-template"
# ];
# Enable previews and customize configuration
idx.previews = {
enable = true;
previews = {
web = {
command = [
"pnpm"
"run"
"dev"
"--port"
"$PORT"
];
manager = "web";
# Optionally, specify a directory that contains your web app
# cwd = "app/client";
};
};
};
}