12 lines
326 B
Nix
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;
|
|
}
|