diff --git a/home-manager/git.nix b/home-manager/git.nix new file mode 100644 index 0000000..f85a429 --- /dev/null +++ b/home-manager/git.nix @@ -0,0 +1,3 @@ +{config, ... }:{ + programs.git.enable = true; +} diff --git a/home-manager/home.nix b/home-manager/home.nix index a60284c..5e6cb06 100644 --- a/home-manager/home.nix +++ b/home-manager/home.nix @@ -15,6 +15,7 @@ ./eza.nix ./nixvim.nix ./nextcloud.nix + ./git.nix ]; # States home manager version that config was originally compatible with, do not change without reading all patch notes since this version and altering as needed diff --git a/hosts/gabbielaptop/configuration.nix b/hosts/gabbielaptop/configuration.nix index 3eb8500..edb549d 100644 --- a/hosts/gabbielaptop/configuration.nix +++ b/hosts/gabbielaptop/configuration.nix @@ -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; diff --git a/modules/packages.nix b/modules/packages.nix index 1460414..10b9eb1 100644 --- a/modules/packages.nix +++ b/modules/packages.nix @@ -39,6 +39,7 @@ orca-slicer davinci-resolve ardour + v4l-utils ]) ++