From f959fd3fff605950d39fc0e71d6f3bcc303f11b3 Mon Sep 17 00:00:00 2001 From: seth Date: Tue, 7 May 2024 00:37:22 -0400 Subject: [PATCH] nixos/fish: disable logrotate service in module test headstart on https://github.com/NixOS/nixpkgs/pull/267880 --- nixos/tests/fish.nix | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nixos/tests/fish.nix b/nixos/tests/fish.nix index 3d9b13c6af70..c9a1bef51478 100644 --- a/nixos/tests/fish.nix +++ b/nixos/tests/fish.nix @@ -10,6 +10,8 @@ import ./make-test-python.nix ({ pkgs, ... }: { coreutils procps # kill collides with coreutils' to test https://github.com/NixOS/nixpkgs/issues/56432 ]; + # TODO: remove if/when #267880 is merged and this is a default + services.logrotate.enable = false; }; testScript =