feat(home:creative): add initial audacity/easyeffects configuration modules
This commit is contained in:
parent
d7671de87a
commit
34103931a1
7 changed files with 49 additions and 1 deletions
13
home/modules/desktop/creative/audio/audacity/default.nix
Normal file
13
home/modules/desktop/creative/audio/audacity/default.nix
Normal 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 ];
|
||||
};
|
||||
}
|
||||
5
home/modules/desktop/creative/audio/default.nix
Normal file
5
home/modules/desktop/creative/audio/default.nix
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
imports = [
|
||||
./audacity
|
||||
];
|
||||
}
|
||||
7
home/modules/desktop/creative/default.nix
Normal file
7
home/modules/desktop/creative/default.nix
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
{
|
||||
imports = [
|
||||
./audio
|
||||
# ./video
|
||||
# ./image
|
||||
];
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue