NixOS/home/programs/easyeffects.nix

10 lines
170 B
Nix
Raw Permalink Normal View History

2024-07-02 14:37:57 +07:00
{ config, lib, pkgs, ... }:
let
cfg = config.profile.programs.easyeffects;
in
{
config = lib.mkIf cfg.enable {
home.packages = with pkgs; [ easyeffects ];
};
}