style: nix fmt

This commit is contained in:
Kat Inskip 2025-07-13 05:10:57 -07:00
parent 7913481b66
commit 6e0cc170eb
Signed by: kat
GPG key ID: 465E64DECEA8CF0F
112 changed files with 1977 additions and 1739 deletions

View file

@ -1,6 +1,5 @@
{
pkgs,
inputs,
...
}: {
hardware.graphics = {
@ -9,7 +8,7 @@
driversi686Linux.mesa
];
};
programs.gamescope = {
programs.gamescope = {
enable = true;
package = pkgs.gamescope;
};

View file

@ -1,4 +1,4 @@
{ pkgs, inputs, ... }: {
_: {
programs.steam = {
enable = true;
remotePlay.openFirewall = true;

View file

@ -1,10 +1,11 @@
{pkgs, ... }: {
{pkgs, ...}: {
programs.envision = {
enable = true;
openFirewall = true; # This is set true by default
};
/*services.wivrn = {
/*
services.wivrn = {
enable = true;
openFirewall = true;
package = pkgs.wivrn.override { cudaSupport = true; };
@ -30,7 +31,8 @@
#];
};
};
};*/
};
*/
environment.systemPackages = with pkgs; [
wlx-overlay-s
@ -39,7 +41,7 @@
];
networking.firewall = {
allowedTCPPorts = [ 9757 ];
allowedUDPPorts = [ 9757 ];
allowedTCPPorts = [9757];
allowedUDPPorts = [9757];
};
}