diff options
-rw-r--r-- | home-manager/stvnliu/home.nix | 4 | ||||
-rw-r--r-- | nixos/configuration.nix | 9 |
2 files changed, 10 insertions, 3 deletions
diff --git a/home-manager/stvnliu/home.nix b/home-manager/stvnliu/home.nix index 0dfa1dd..090500a 100644 --- a/home-manager/stvnliu/home.nix +++ b/home-manager/stvnliu/home.nix @@ -64,8 +64,8 @@ vlc zed-editor rhythmbox + clash-verge-rev ]; - programs.waybar = { enable = true; settings = [ @@ -133,7 +133,7 @@ { criteria = "eDP-1"; position = "0,0"; - status = "enable"; + status = "disable"; } ]; }; 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 = { |