steam is no longer big picture

This commit is contained in:
kenji
2025-07-17 21:37:19 -05:00
parent f6b1976809
commit 960ac31702
5 changed files with 8 additions and 4 deletions
+1
View File
@@ -39,6 +39,7 @@
]; ];
}; };
Hyprland = { Hyprland = {
enable = false;
monitors = [ monitors = [
"DP-1, highres@165,0x1080,1,vrr,1" "DP-1, highres@165,0x1080,1,vrr,1"
"DP-2, highres@highrr,0x0,1" "DP-2, highres@highrr,0x0,1"
+1 -1
View File
@@ -7,7 +7,7 @@
wayland.windowManager.hyprland.settings = { wayland.windowManager.hyprland.settings = {
exec-once = [ exec-once = [
# "[workspace special:communication silent] discord" # "[workspace special:communication silent] discord"
"[workspace special:steam silent] steam -start steam://open/bigpicture" "[workspace special:steam silent] steam"
"[workspace special:preload silent] kitty --single-instance --hold fastfetch" "[workspace special:preload silent] kitty --single-instance --hold fastfetch"
"[workspace special:preload silent] firefox" "[workspace special:preload silent] firefox"
"[workspace 1] kitty --single-instance --hold -e fish -C fastfetch" "[workspace 1] kitty --single-instance --hold -e fish -C fastfetch"
+1 -1
View File
@@ -51,7 +51,7 @@
# Always full screen # Always full screen
# "fullscreen, title:^(Steam Big Picture Mode)$" # "fullscreen, title:^(Steam Big Picture Mode)$"
"fullscreen, title:^(steam_app_.*)$" # "fullscreen, title:^(steam_app_.*)$"
# Dialogs # Dialogs
"float, title:(Select|Open)( a)? (File|Folder)(s)?" "float, title:(Select|Open)( a)? (File|Folder)(s)?"
+2 -1
View File
@@ -1,10 +1,11 @@
{ {
pkgs, pkgs,
inputs, inputs,
myConfig,
... ...
}: { }: {
programs.hyprland = { programs.hyprland = {
enable = true; enable = myConfig.nixos.Hyprland.enable;
package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland; package = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.hyprland;
portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland; portalPackage = inputs.hyprland.packages.${pkgs.stdenv.hostPlatform.system}.xdg-desktop-portal-hyprland;
}; };
+3 -1
View File
@@ -5,7 +5,9 @@
capSysNice = true; capSysNice = true;
}; };
steam = { steam = {
enable = true; remotePlay.openFirewall = true; # Open ports in the firewall for Steam Remote Play
dedicatedServer.openFirewall = true; # Open ports in the firewall for Source Dedicated Server
localNetworkGameTransfers.openFirewall = true; # Open ports in the firewall for Steam Local Network Game Transfers enable = true;
gamescopeSession.enable = true; gamescopeSession.enable = true;
}; };
}; };