why is vsc so bad with git I hate

This commit is contained in:
blahai 2024-08-30 23:18:40 +03:00
parent 9ea3b83bc6
commit 1d44666920
No known key found for this signature in database
12 changed files with 507 additions and 70 deletions

View file

@ -0,0 +1,26 @@
{ config, pkgs, ... }: {
home.packages = with pkgs; [
protonup-qt
prismlauncher
osu-lazer-bin
obs-studio
];
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
};
gamemode.enable = true;
};
hardware.opentabletdriver.enable = true;
hardware.opengl = {
enable = true;
driSupport = true;
driSupport32Bit = true;
};
}