1
0
Fork 0
nix-configuration/modules/nixos/apps/recording/default.nix

27 lines
452 B
Nix
Raw Normal View History

{
config,
lib,
2024-12-06 18:04:47 +00:00
namespace,
...
}:
2024-02-29 14:53:34 +00:00
let
2024-12-06 18:04:47 +00:00
cfg = config.${namespace}.apps.recording;
2024-02-29 14:53:34 +00:00
in
{
options = {
2024-12-06 18:04:47 +00:00
${namespace}.apps.recording.enable = lib.mkEnableOption "Enables video editing tools";
};
2024-02-29 14:53:34 +00:00
2024-08-02 21:55:48 +00:00
config = lib.mkIf cfg.enable {
2024-12-06 18:04:47 +00:00
${namespace}.ui.flatpak.enable = true;
2024-02-29 14:53:34 +00:00
2024-06-10 19:22:27 +00:00
services.flatpak.packages = [
"com.obsproject.Studio"
"org.kde.kdenlive"
"org.tenacityaudio.Tenacity"
2024-06-20 13:11:34 +00:00
"io.github.seadve.Kooha"
2024-06-10 19:22:27 +00:00
];
};
}