fix(home): replace deprecated stdenv.is* with hostPlatform.is*

This commit is contained in:
Ryan Yin
2026-08-24 00:33:22 +08:00
parent 3c361f316f
commit 7cba098b07
8 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -23,7 +23,7 @@ in
pkgs.qt6Packages.qt6ct # for icon theme
pkgs.app2unit # Launch Desktop Entries (or arbitrary commands) as Systemd user units
]
++ (lib.optionals pkgs.stdenv.isx86_64 [
++ (lib.optionals pkgs.stdenv.hostPlatform.isx86_64 [
pkgs.gpu-screen-recorder # recoding screen
]);