2.home-manager/tests/modules/services/flameshot/default.nix
Austin Horstman ede6d1d95e tests/flameshot: add darwin tests
Signed-off-by: Austin Horstman <khaneliman12@gmail.com>
2026-02-12 11:04:03 -06:00

12 lines
326 B
Nix

{ lib, pkgs, ... }:
{
flameshot-empty-settings = ./empty-settings.nix;
flameshot-example-settings = ./example-settings.nix;
}
// lib.optionalAttrs pkgs.stdenv.hostPlatform.isLinux {
flameshot-service = ./service.nix;
}
// lib.optionalAttrs pkgs.stdenv.hostPlatform.isDarwin {
flameshot-agent = ./launchd-agent.nix;
}