From f0bd685f77449c69d1044a29efb3505dfc22dc46 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Sun, 24 Aug 2025 19:10:14 -0400 Subject: [PATCH 1/2] Blacklist xpad --- clients/quadraticpc/wheel.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/clients/quadraticpc/wheel.nix b/clients/quadraticpc/wheel.nix index f9c9a32..b61ab00 100644 --- a/clients/quadraticpc/wheel.nix +++ b/clients/quadraticpc/wheel.nix @@ -3,7 +3,7 @@ config, ... }: { - boot.blacklistedKernelModules = ["usb-thrustmaster" "hid-thrustmaster"]; + boot.blacklistedKernelModules = ["xpad"]; boot.extraModulePackages = [config.boot.kernelPackages.hid-tmff2]; environment.systemPackages = with pkgs; [oversteer linuxConsoleTools]; From 165707c937ce994bb46664522722e250230a85b2 Mon Sep 17 00:00:00 2001 From: Henry-Hiles Date: Mon, 25 Aug 2025 17:09:36 -0400 Subject: [PATCH 2/2] add codeberg alias --- modules/common/git.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/modules/common/git.nix b/modules/common/git.nix index 43ad675..6354529 100644 --- a/modules/common/git.nix +++ b/modules/common/git.nix @@ -12,7 +12,8 @@ signingKey = builtins.elemAt (import ../../secrets/keys.nix) 0; }; url = { - "git@github.com:".insteadOf = ["https://github.com/"]; + "git@github.com:".insteadOf = ["https://github.com"]; + "git@codeberg.org:".insteadOf = ["https://codeberg.org"]; "git@git.federated.nexus:".insteadOf = ["https://git.federated.nexus"]; }; init.defaultBranch = "main";