nixos-config/nixos/modules/programs/easytag.nix
2022-06-14 22:56:58 +02:00

20 lines
292 B
Nix

{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.programs.custom.easytag;
in
{
options.programs.custom.easytag.enable =
mkEnableOption "install easytag with dependencies";
config = mkIf cfg.enable {
environment.systemPackages = with pkgs; [ easytag dconf ];
};
}