lxd: Add proper support for nftables

This commit is contained in:
Patryk Wychowaniec
2020-06-05 12:57:18 +02:00
parent abb2f6038c
commit 72e80cdc54
2 changed files with 20 additions and 11 deletions

View File

@@ -15,7 +15,6 @@ in
###### interface
options = {
virtualisation.lxd = {
enable = mkOption {
type = types.bool;
@@ -30,7 +29,7 @@ in
package = mkOption {
type = types.package;
default = pkgs.lxd;
default = pkgs.lxd.override { nftablesSupport = config.networking.nftables.enable; };
defaultText = "pkgs.lxd";
description = ''
The LXD package to use.
@@ -65,6 +64,7 @@ in
with nixos.
'';
};
recommendedSysctlSettings = mkOption {
type = types.bool;
default = false;
@@ -83,7 +83,6 @@ in
###### implementation
config = mkIf cfg.enable {
environment.systemPackages = [ cfg.package ];
security.apparmor = {