AppArmor.d and roddhjav-apparmor-rules

I’m curious how one would load the AppArmor profiles from roddhjav-apparmor-rules. The nix store folder containing the profiles appears in /etc/apparmor/parser.conf but none of the profiles appear when I run sudo aa-status. It seems like they should work on NixOS (although idk I don’t particularly understand AppArmor) and I assume if they are packaged some at least must be usable.

This is all I added to my configuration.nix:

  security.apparmor = {
    enable = true;
    packages = with pkgs; [
      roddhjav-apparmor-rules
    ];
  };