This commit is contained in:
mjallen18
2025-12-01 09:50:06 -06:00
parent db988e9761
commit be9be7a4c5
2 changed files with 5 additions and 5 deletions

View File

@@ -129,7 +129,7 @@ in
inStageManager = true;
};
clickWallpaperToRevealDesktop = "Always";
stageManager = true;
stageManager = false;
showRecentAppsInStageManager = true;
showWindowsFromAnApplication = "All at Once";
};

View File

@@ -1,5 +1,5 @@
{ pkgs, fetchPypi, ... }:
pkgs.stable.python3Packages.buildPythonPackage rec {
pkgs.python3Packages.buildPythonPackage rec {
pname = "homeassistant_api";
version = "5.0.0";
format = "pyproject";
@@ -10,16 +10,16 @@ pkgs.stable.python3Packages.buildPythonPackage rec {
# do not run tests
doCheck = false;
nativeBuildInputs = with pkgs.stable.python3Packages; [
nativeBuildInputs = with pkgs.python3Packages; [
poetry-core
requests-cache
];
dependencies = with pkgs.stable.python3Packages; [
dependencies = with pkgs.python3Packages; [
requests-cache
pydantic
websockets
];
propagatedBuildInputs = with pkgs.stable.python3Packages; [
propagatedBuildInputs = with pkgs.python3Packages; [
aiohttp
aiohttp-client-cache
pydantic