steam is no longer big picture
This commit is contained in:
@@ -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"
|
||||||
|
|||||||
@@ -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"
|
||||||
|
|||||||
@@ -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)?"
|
||||||
|
|||||||
@@ -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;
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -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;
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|||||||
Reference in New Issue
Block a user