feat(home:creative): add initial audacity/easyeffects configuration modules

This commit is contained in:
ooks-io 2024-04-16 23:17:40 +12:00
parent d7671de87a
commit 34103931a1
7 changed files with 49 additions and 1 deletions

View file

@ -0,0 +1,13 @@
{lib, config, pkgs, ... }:
let
cfg = config.homeModules.desktop.creative.audio.audacity;
inherit (lib) mkIf mkEnableOption;
in
{
options.homeModules.desktop.creative.audio.audacity.enable = mkEnableOption "Enable audacity home module";
config = mkIf cfg.enable {
home.packages = [ pkgs.audacity ];
};
}

View file

@ -0,0 +1,5 @@
{
imports = [
./audacity
];
}

View file

@ -0,0 +1,7 @@
{
imports = [
./audio
# ./video
# ./image
];
}