18 lines
299 B
Nix
18 lines
299 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 ];
|
|
};
|
|
}
|
|
|