steam removed some things
This commit is contained in:
parent
26b41feeef
commit
f5ac190adc
|
@ -5,10 +5,16 @@
|
||||||
{ config, lib, pkgs, callPackage, catppuccinFlavor, ... }:
|
{ config, lib, pkgs, callPackage, catppuccinFlavor, ... }:
|
||||||
|
|
||||||
{
|
{
|
||||||
imports =
|
imports = [
|
||||||
[
|
./hardware-configuration.nix
|
||||||
./hardware-configuration.nix
|
];
|
||||||
];
|
|
||||||
|
programs.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
|
||||||
|
};
|
||||||
|
|
||||||
catppuccin.flavor = catppuccinFlavor;
|
catppuccin.flavor = catppuccinFlavor;
|
||||||
catppuccin.enable = true;
|
catppuccin.enable = true;
|
||||||
|
@ -123,6 +129,8 @@
|
||||||
pkgs.kitty # terminal
|
pkgs.kitty # terminal
|
||||||
pkgs.nitrogen # wallpapers
|
pkgs.nitrogen # wallpapers
|
||||||
pkgs.tmux # multiplexer
|
pkgs.tmux # multiplexer
|
||||||
|
|
||||||
|
pkgs.steam
|
||||||
];
|
];
|
||||||
|
|
||||||
# Some programs need SUID wrappers, can be configured further or are
|
# Some programs need SUID wrappers, can be configured further or are
|
||||||
|
|
2
home.nix
2
home.nix
|
@ -62,7 +62,7 @@
|
||||||
# This value determines the Home Manager release that your configuration is
|
# This value determines the Home Manager release that your configuration is
|
||||||
# compatible with. This helps avoid breakage when a new Home Manager release
|
# compatible with. This helps avoid breakage when a new Home Manager release
|
||||||
# introduces backwards incompatible changes.
|
# introduces backwards incompatible changes.
|
||||||
#
|
|
||||||
# You should not change this value, even if you update Home Manager. If you do
|
# You should not change this value, even if you update Home Manager. If you do
|
||||||
# want to update the value, then make sure to first check the Home Manager
|
# want to update the value, then make sure to first check the Home Manager
|
||||||
# release notes.
|
# release notes.
|
||||||
|
|
Loading…
Reference in New Issue