summaryrefslogtreecommitdiffstats
path: root/nixos/modules/programs/oddjobd.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixos/modules/programs/oddjobd.nix')
-rw-r--r--nixos/modules/programs/oddjobd.nix7
1 files changed, 2 insertions, 5 deletions
diff --git a/nixos/modules/programs/oddjobd.nix b/nixos/modules/programs/oddjobd.nix
index b0920d007c9e..08bb8b268473 100644
--- a/nixos/modules/programs/oddjobd.nix
+++ b/nixos/modules/programs/oddjobd.nix
@@ -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 ];
}