Add temporary crun fix
Signed-off-by: Nikolaos Karaolidis <nick@karaolidis.com>
This commit is contained in:
@@ -2,6 +2,20 @@
|
|||||||
{
|
{
|
||||||
imports = [ inputs.quadlet-nix.nixosModules.quadlet ];
|
imports = [ inputs.quadlet-nix.nixosModules.quadlet ];
|
||||||
|
|
||||||
|
# FIXME: https://github.com/containers/crun/pull/1807
|
||||||
|
nixpkgs.overlays = [
|
||||||
|
(final: prev: {
|
||||||
|
crun = prev.crun.overrideAttrs (oldAttrs: {
|
||||||
|
patches = oldAttrs.patches or [ ] ++ [
|
||||||
|
(builtins.fetchurl {
|
||||||
|
url = "https://patch-diff.githubusercontent.com/raw/containers/crun/pull/1807.patch";
|
||||||
|
sha256 = "sha256:04s11r4ffjzlxzbwjk2s7vcgykllbmc0jgl0b1va5rxqvxs2c6hb";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
});
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
virtualisation = {
|
virtualisation = {
|
||||||
podman.enable = true;
|
podman.enable = true;
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user