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
|
||||
];
|
||||
}
|
||||
|
|
@ -2,7 +2,7 @@
|
|||
imports = [
|
||||
# ./themeSettings # done
|
||||
./browser # done -- firefox still need: chrome, brave
|
||||
#./creative -- still needs to be implemented
|
||||
./creative
|
||||
./communication # only discord implemented
|
||||
./media # done -- spotify gui still needs to be implemented
|
||||
./terminal # done -- wezterm still needs to be implemented
|
||||
|
|
|
|||
|
|
@ -2,6 +2,7 @@
|
|||
{
|
||||
imports = [
|
||||
#./spotify --- still needs to be implemented
|
||||
./easyeffects
|
||||
./tui
|
||||
];
|
||||
|
||||
|
|
|
|||
15
home/modules/desktop/media/music/easyeffects/default.nix
Normal file
15
home/modules/desktop/media/music/easyeffects/default.nix
Normal file
|
|
@ -0,0 +1,15 @@
|
|||
{lib, config, ... }:
|
||||
|
||||
let
|
||||
cfg = config.homeModules.desktop.media.music.easyeffects;
|
||||
inherit (lib) mkIf mkEnableOption;
|
||||
in
|
||||
|
||||
{
|
||||
options.homeModules.desktop.media.music.easyeffects.enable = mkEnableOption "Enable easy effects home module";
|
||||
config = mkIf cfg.enable {
|
||||
services.easyeffects = {
|
||||
enable = true;
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue