Skip to content

Commit

Permalink
nixos/tests/apparmor.nix: get rid of with lib
Browse files Browse the repository at this point in the history
  • Loading branch information
AndersonTorres committed May 13, 2023
1 parent 5202b74 commit 5252e85
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions nixos/tests/apparmor.nix
Original file line number Diff line number Diff line change
@@ -1,14 +1,11 @@
import ./make-test-python.nix ({ pkgs, ... } : {
name = "apparmor";
meta = with pkgs.lib.maintainers; {
maintainers = [ julm ];
};
meta.maintainers = with lib.maintainers; [ julm ];

nodes.machine =
{ lib, pkgs, config, ... }:
with lib;
{
security.apparmor.enable = mkDefault true;
security.apparmor.enable = lib.mkDefault true;
};

testScript =
Expand Down

0 comments on commit 5252e85

Please sign in to comment.