Skip to content
Discussion options

You must be logged in to vote

Aha! Thanks! I was looking in the completely wrong place to try to fix this, and I got it working by adding postfix to systemd.services."check_mk_agent@".path.

Here's details on what I did:

Use this flake:

{
  inputs = {
    nixpkgs.url = "github:NixOS/nixpkgs/nixos-25.11";
    checkmk = {
      url = "github:Checkmk/checkmk/v2.3.0p36";
      flake = false;
    };
    check_mk_agent = {
      url = "github:BenediktSeidl/nixos-check_mk_agent-overlay";
      inputs.nixpkgs.follows = "nixpkgs";
      inputs.checkmk.follows = "checkmk";
    };
  };
  outputs =
    { nixpkgs, check_mk_agent, ... }:
    {
      nixosConfigurations.test = nixpkgs.lib.nixosSystem {
        system = "x86_64-linux";

Replies: 1 comment 1 reply

Comment options

You must be logged in to vote
1 reply
@gmacon
Comment options

Answer selected by gmacon
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants