mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 02:06:46 +01:00
05d334cfe2
This reverts commit 420f89ceb2
.
12 lines
479 B
Nix
12 lines
479 B
Nix
{ config, lib, pkgs, ... }:
|
|
let apparmor = config.security.apparmor; in
|
|
{
|
|
config.security.apparmor.packages = [ pkgs.apparmor-profiles ];
|
|
config.security.apparmor.policies."bin.ping".profile = lib.mkIf apparmor.policies."bin.ping".enable ''
|
|
include "${pkgs.iputils.apparmor}/bin.ping"
|
|
include "${pkgs.inetutils.apparmor}/bin.ping"
|
|
# Note that including those two profiles in the same profile
|
|
# would not work if the second one were to re-include <tunables/global>.
|
|
'';
|
|
}
|