nixos-config/modules/programs/easytag.nix

19 lines
299 B
Nix
Raw Normal View History

2019-10-24 02:20:38 +02:00
{ config, pkgs, lib, ... }:
with lib;
let
cfg = config.programs.custom.easytag;
in {
2019-12-20 05:54:26 +01:00
options.programs.custom.easytag.enable =
mkEnableOption "install easytag with dependencies";
2019-10-24 02:20:38 +02:00
config = mkIf cfg.enable {
2019-12-20 05:54:26 +01:00
environment.systemPackages = with pkgs; [ easytag gnome3.dconf ];
2019-10-24 02:20:38 +02:00
};
}