this repo has no description
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

Enable rplay on black-mesa

Ben C 67636023 223bb2aa

+21 -7
+6 -6
flake.lock
··· 361 361 ] 362 362 }, 363 363 "locked": { 364 - "lastModified": 1740161709, 365 - "narHash": "sha256-QInyU5nXiwGzzCc3qxYHJKFY/YWege8Us7aZZOCFW4Q=", 364 + "lastModified": 1740243507, 365 + "narHash": "sha256-ahy6qscPiZlpOgGVKT33h3c91Jxsb/eNfI21p8QJSqg=", 366 366 "owner": "nix-community", 367 367 "repo": "home-manager", 368 - "rev": "148a6b55651ac794f5c20bbd76780b4d8fed4334", 368 + "rev": "e860bd49eaa577089de22d370f6126ee4f6e7914", 369 369 "type": "github" 370 370 }, 371 371 "original": { ··· 676 676 ] 677 677 }, 678 678 "locked": { 679 - "lastModified": 1740104932, 680 - "narHash": "sha256-FaN+HBAhOW1wAjxPI/Ko1DX0ax4ucHCZoMJ0dGMxm8o=", 679 + "lastModified": 1740191166, 680 + "narHash": "sha256-WqRxO1Afx8jPYG4CKwkvDFWFvDLCwCd4mxb97hFGYPg=", 681 681 "owner": "oxalica", 682 682 "repo": "rust-overlay", 683 - "rev": "c932b3873a5d56126bc1f1416fb8a58315f86c17", 683 + "rev": "74a3fb71b0cc67376ab9e7c31abcd68c813fc226", 684 684 "type": "github" 685 685 }, 686 686 "original": {
+2
nixosModules/games+graphics.nix
··· 6 6 localNetworkGameTransfers.openFirewall = true; 7 7 }; 8 8 9 + programs.gamescope.enable = true; 10 + 9 11 environment.systemPackages = with pkgs; [ 10 12 prismlauncher 11 13 libsForQt5.kmousetool
+12
nixosModules/steam-rplay.nix
··· 1 + {...}: { 2 + programs.steam = { 3 + enable = true; 4 + remotePlay.openFirewall = true; 5 + localNetworkGameTransfers.openFirewall = true; 6 + }; 7 + 8 + programs.gamescope = { 9 + enable = true; 10 + capSysNice = true; 11 + }; 12 + }
+1 -1
systemConfigs/black-mesa.nix
··· 2 2 system = "x86_64-linux"; 3 3 4 4 modules = [ 5 - (outputs.lib.applyRoles ["base" "latest-linux" "ssh" "fun" "dev" "secureboot" "mc-server"]) 5 + (outputs.lib.applyRoles ["base" "latest-linux" "ssh" "fun" "dev" "secureboot" "mc-server" "steam-rplay"]) 6 6 ({ 7 7 modulesPath, 8 8 lib,