Merge pull request #271302 from SohamG/patch-1

nixos/oddjobd: add SohamG as maintainer
This commit is contained in:
Weijia Wang 2023-12-01 09:19:46 +01:00 committed by GitHub
commit a06a0562f1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -10,11 +10,6 @@ in
};
config = lib.mkIf cfg.enable {
assertions = [
{ assertion = false;
message = "The oddjob service was found to be broken without NixOS test or maintainer. Please take ownership of this service.";
}
];
systemd.packages = [ cfg.package ];
systemd.services.oddjobd = {
@ -30,4 +25,6 @@ in
};
};
};
meta.maintainers = with lib.maintainers; [ SohamG ];
}