this repo has no description
0
fork

Configure Feed

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

feat: install Bottles

For Overwatch

+17
+17
configuration.nix
··· 9 9 boot.loader.systemd-boot.enable = true; 10 10 boot.loader.efi.canTouchEfiVariables = true; 11 11 12 + # TODO make it optional for non-AMD GPU 13 + hardware.opengl = { 14 + driSupport = true; 15 + driSupport32Bit = true; 16 + # TODO do we need this?? currently disabled because FPS lock in Overwatch 17 + # extraPackages = with pkgs; [ 18 + # amdvlk 19 + # ]; 20 + # extraPackages32 = with pkgs; [ 21 + # driversi686Linux.amdvlk 22 + # ]; 23 + }; 24 + 12 25 networking.hostName = "nixos"; 13 26 networking.networkmanager.enable = true; 14 27 ··· 159 172 (pass.withExtensions (ext: with ext; [ 160 173 pass-otp 161 174 ])) 175 + 176 + # TODO split to a different file? 177 + # Games 178 + bottles 162 179 ]; 163 180 }; 164 181 }