diff options
author | Azat Bahawi <azat@bahawi.net> | 2024-02-29 12:54:39 +0300 |
---|---|---|
committer | Azat Bahawi <azat@bahawi.net> | 2024-02-29 12:54:39 +0300 |
commit | 37420f58905057b2ca31b208e9c6c4d6e773a99d (patch) | |
tree | 3dd8335a207736f1cbcd23ad92a9ab45ae7c16ca /modules/nixos/podman.nix | |
parent | 2024-02-21 (diff) |
2024-02-29
Diffstat (limited to '')
-rw-r--r-- | modules/nixos/podman.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/nixos/podman.nix b/modules/nixos/podman.nix index 60f208e..5e369a6 100644 --- a/modules/nixos/podman.nix +++ b/modules/nixos/podman.nix @@ -13,7 +13,7 @@ in { config = mkIf cfg.enable { assertions = [ { - assertion = !config.nixfiles.modules.docker.enable; + assertion = cfg.enable -> !config.nixfiles.modules.docker.enable; message = "Pick only one!"; } ]; |