desktop/media: init ardour
This commit is contained in:
parent
6aea3cd3b5
commit
1a08fa63d0
2 changed files with 16 additions and 0 deletions
15
modules/desktop/media/ardour/default.nix
Normal file
15
modules/desktop/media/ardour/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
||||||
|
{ outputs, options, config, lib, pkgs, ...}:
|
||||||
|
let
|
||||||
|
cfg = config.modules.desktop.media.ardour;
|
||||||
|
in
|
||||||
|
{
|
||||||
|
options.modules.desktop.media.ardour = {
|
||||||
|
enable = lib.mkEnableOption false;
|
||||||
|
};
|
||||||
|
|
||||||
|
config = lib.mkIf cfg.enable {
|
||||||
|
users.users.sako.packages = with pkgs; [
|
||||||
|
ardour
|
||||||
|
];
|
||||||
|
};
|
||||||
|
}
|
|
@ -6,6 +6,7 @@
|
||||||
./blender
|
./blender
|
||||||
./kdenlive
|
./kdenlive
|
||||||
./lmms
|
./lmms
|
||||||
|
./ardour
|
||||||
./mpv
|
./mpv
|
||||||
./jellyfin
|
./jellyfin
|
||||||
./feishin
|
./feishin
|
||||||
|
|
Loading…
Reference in a new issue