nixos-config/modules/programs/easytag.nix
2019-10-24 02:24:33 +02:00

21 lines
311 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
gnome3.dconf
];
};
}