From 99ddee1f5e5f4d11a745ff2e94bf3cb26a81250e Mon Sep 17 00:00:00 2001 From: Asmir A Date: Tue, 7 May 2024 16:35:10 +0200 Subject: [PATCH] nixy/podman: set mkForce for storage driver --- nixy/configuration.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/nixy/configuration.nix b/nixy/configuration.nix index 8e13e67..af1a893 100644 --- a/nixy/configuration.nix +++ b/nixy/configuration.nix @@ -1,9 +1,10 @@ { config, - pkgs, + lib, nix-xilinx, - system, nvim, + pkgs, + system, zremap, ... }: { @@ -383,7 +384,7 @@ virtualisation = { containers.storage.settings = { storage = { - driver = "btrfs"; + driver = lib.mkForce "btrfs"; graphroot = "/var/lib/containers/storage"; runroot = "/run/containers/storage"; };