diff options
Diffstat (limited to 'flake.nix')
-rwxr-xr-x | flake.nix | 15 |
1 files changed, 12 insertions, 3 deletions
diff --git a/flake.nix b/flake.nix index d34ccc4..bcef2ce 100755 --- a/flake.nix +++ b/flake.nix @@ -17,9 +17,7 @@ }; # Draupnir module/package - nixpkgs-Draupnir = { - url = "github:TheArcaneBrony/nixpkgs/master"; - }; + nixpkgs-Draupnir.url = "github:TheArcaneBrony/nixpkgs/master"; # Base modules home-manager.url = "github:nix-community/home-manager/master"; @@ -79,6 +77,17 @@ matrix-synapse-unwrapped = inputs.nixpkgs-master.legacyPackages.${pkgs.stdenv.hostPlatform.system}.matrix-synapse-unwrapped; draupnir = inputs.nixpkgs-Draupnir.legacyPackages.${pkgs.stdenv.hostPlatform.system}.draupnir; }) + + # // matrix-nio + (final: prev: { + python312 = prev.python312.override { + packageOverrides = python-self: python-super: { + matrix-nio = python-super.matrix-nio.overridePythonAttrs (old: { + pythonRelaxDeps = [ "aiohttp-socks" ]; + }); + }; + }; + }) ]; } ) |