From 88812199204a61931c295774494f161e5c1b7d69 Mon Sep 17 00:00:00 2001 From: Nathan McCarty Date: Fri, 25 Apr 2025 22:32:54 -0400 Subject: [PATCH] Use git dislocker --- nixos/machines/swarm/configuration.nix | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/nixos/machines/swarm/configuration.nix b/nixos/machines/swarm/configuration.nix index dd40578..5de17b6 100644 --- a/nixos/machines/swarm/configuration.nix +++ b/nixos/machines/swarm/configuration.nix @@ -150,7 +150,15 @@ # System tools gparted f2fs-tools - dislocker + (dislocker.overrideAttrs (prev: { + src = fetchFromGitHub { + owner = "aorimn"; + repo = "dislocker"; + rev = "3e7aea196eaa176c38296a9bc75c0201df0a3679"; + sha256 = "sha256-jKk+okSQJ54R17EiUk9NnjLxGi6RrwFrGFVi8ekckww="; + }; + patches = []; + })) ]; virtualisation.podman = {enable = true;};