about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMaciej Krüger <mkg20001@gmail.com>2021-11-03 07:41:40 +0100
committerMaciej Krüger <mkg20001@gmail.com>2021-11-03 07:41:40 +0100
commit9d3df0b2ac0c425569234098da1db7e48b16f769 (patch)
treeb7ddb59fa8c22f549407dde2847197a2c5769b69
parent27a78cf2ee4a4b34688344be623222e47452f686 (diff)
nixos/lxd: fix nftables switch #81172 breaking module
-rw-r--r--nixos/modules/virtualisation/lxd.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/nixos/modules/virtualisation/lxd.nix b/nixos/modules/virtualisation/lxd.nix
index 94cd22d1371c7..18451b147ff53 100644
--- a/nixos/modules/virtualisation/lxd.nix
+++ b/nixos/modules/virtualisation/lxd.nix
@@ -34,7 +34,7 @@ in {
 
       package = mkOption {
         type = types.package;
-        default = pkgs.lxd.override { nftablesSupport = config.networking.nftables.enable; };
+        default = pkgs.lxd;
         defaultText = literalExpression "pkgs.lxd";
         description = ''
           The LXD package to use.