diff options
-rwxr-xr-x | host/Rory-synapse/configuration.nix | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/host/Rory-synapse/configuration.nix b/host/Rory-synapse/configuration.nix index e2b7dc3..08fe1df 100755 --- a/host/Rory-synapse/configuration.nix +++ b/host/Rory-synapse/configuration.nix @@ -161,5 +161,20 @@ }; system.stateVersion = "22.11"; # DO NOT EDIT! + + nixpkgs.overlays = [ + (final: prev: { + mjolnir = prev.mjolnir.overrideAttrs (prevAttrs: { + pname = "Draupnir"; + version = "1.81.0"; + src = fetchFromGitHub { + owner = "Gnuxie"; + repo = "Draupnir"; + rev = "v1.81.0"; + hash = "sha256-Z2nmTknYfXmzBzr2TY8ylb0KulT3k2D7Evymu+vykuQ="; + } + }); + }) + ] } |