moved git to home-manager for use on multiple systems, currently enabled but not configured

This commit is contained in:
Gabriella Bere 2024-09-15 21:22:55 +01:00
parent 29f74e5639
commit ff707054c1
4 changed files with 14 additions and 8 deletions

View file

@ -28,7 +28,7 @@
nix.settings.experimental-features = [ "nix-command" "flakes" ];
# default kernel causes issues with wpa_supplicant meaning shutdown times are > 10 mins updating to kernel 69+ fixes this
boot.kernelPackages = pkgs.linuxKernel.packages.linux_zen;
# boot.kernelPackages = pkgs.linuxKernel.packages.linux_zen;
# I was told that adding these helps but it doesnt seemt to work as monitors are still buggy at 144hz, may as well keep them
boot.kernelParams = [
@ -37,8 +37,9 @@
"video=eDP-2:2560x1200@165"
];
boot.initrd.kernelModules = [ "amdgpu" "v4l2loopback" ];
boot.initrd.kernelModules = [ "amdgpu" ];
boot.extraModulePackages = [ pkgs.linuxPackages.v4l2loopback ];
boot.kernelModules = [ "v4l2loopback" ];
networking.hostName = "gabbielaptop"; # Define your hostname.
# networking.wireless.enable = true; # Enables wireless support via wpa_supplicant.
@ -206,12 +207,12 @@
7777 # used for Satisfactory Server
];
networking.firewall.allowedUDPPorts = [ 7777 ];
# networking.firewall.allowedTCPPortRanges = [
# {
# from = 49000;
# to = 65535;
# }
# ];
networking.firewall.allowedUDPPortRanges = [
{
from = 45000;
to = 60000;
}
];
# Or disable the firewall altogether.
# networking.firewall.enable = false;