main
 1{
 2  flake.modules.nixos.de-custom = _: {
 3    security.polkit = {
 4      enable = true;
 5      adminIdentities = ["unix-group:wheel"];
 6    };
 7  };
 8
 9  flake.modules.homeManager.de-custom = _: {
10    services.polkit-gnome.enable = true;
11  };
12}