diff options
author | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-08-10 16:13:48 +0800 |
---|---|---|
committer | Zhongheng Liu <z.liu@outlook.com.gr> | 2024-08-10 16:13:48 +0800 |
commit | 872935e646da11422a7c6a9b0d01bb24aab2009f (patch) | |
tree | 44e631575a702f4c5ed6ad942b0c79c431d16e2d /nixos/configuration.nix | |
parent | 8bdd51e77a9c997d3a0dfa14b01b57cb16280dcb (diff) | |
download | nixos-configuration-872935e646da11422a7c6a9b0d01bb24aab2009f.tar.gz nixos-configuration-872935e646da11422a7c6a9b0d01bb24aab2009f.tar.bz2 nixos-configuration-872935e646da11422a7c6a9b0d01bb24aab2009f.zip |
fix: fixed kanshi service configuration
Diffstat (limited to 'nixos/configuration.nix')
-rw-r--r-- | nixos/configuration.nix | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/nixos/configuration.nix b/nixos/configuration.nix index 80f254e..0c90956 100644 --- a/nixos/configuration.nix +++ b/nixos/configuration.nix @@ -15,7 +15,7 @@ ./services/laptop.preset.nix ./hardware-configuration.nix ]; - #boot.kernelPackages = pkgs.linuxPackages_latest; + # boot.kernelPackages = pkgs.linuxPackages_latest; boot.supportedFilesystems = ["ntfs"]; security.pam.services.hyprlock = {}; hardware.bluetooth = { @@ -28,6 +28,13 @@ wantedBy = ["default.target"]; serviceConfig.ExecStart = "${pkgs.bluez}/bin/mpris-proxy"; }; + 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 + }; + boot.loader = { efi.canTouchEfiVariables = true; grub = { |