fix wifi, add apps, update insync, some vscode settings

This commit is contained in:
Vinzenz Schroeter 2023-08-19 20:13:11 +02:00
parent c041ac5f4d
commit 3c616bac52
3 changed files with 36 additions and 10 deletions

View file

@ -21,6 +21,7 @@
networking = {
# wireless.enable = true; # Enables wireless support via wpa_supplicant.
# wireless.userControlled.enable = true;
# Configure network proxy if necessary
# proxy.default = "http://user:password@proxy:port/";
@ -33,15 +34,17 @@
enable = true;
allowedTCPPortRanges = [
{
# KDE Connect
from = 1714;
to = 1764;
} # KDE Connect
}
];
allowedUDPPortRanges = [
{
# KDE Connect
from = 1714;
to = 1764;
} # KDE Connect
}
];
};
};
@ -136,6 +139,13 @@
package = pkgs.gitFull;
};
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
};
# List packages installed in system profile.
# environment.systemPackages = [];
}