2020-08-16 08:33:44 +00:00
|
|
|
# Muh consumer applications...
|
|
|
|
{ config, options, lib, pkgs, ... }:
|
|
|
|
|
|
|
|
with lib;
|
|
|
|
{
|
|
|
|
options.modules.desktop.multimedia = {
|
|
|
|
enable = mkOption {
|
|
|
|
type = types.bool;
|
|
|
|
default = false;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
config = mkIf config.modules.desktop.multimedia.enable {
|
|
|
|
my.packages = with pkgs; [
|
2020-09-01 15:10:44 +00:00
|
|
|
ffmpeg # The ultimate multimedia toolkit for everybody!
|
2020-08-16 08:33:44 +00:00
|
|
|
hexchat # The ultimate IRC client for neckbeards.
|
2020-08-24 15:56:31 +00:00
|
|
|
kdenlive # A decent free and open source video editor.
|
2020-08-16 08:33:44 +00:00
|
|
|
mpv # The ultimate media player for hipsters.
|
|
|
|
newsboat # The ultimate RSS aggregator for some person.
|
2020-08-18 16:48:02 +00:00
|
|
|
obs-studio # Open Broadcasting Studio Studio, the reliable recording workflow.
|
|
|
|
obs-linuxbrowser # OBS plugin for browser source.
|
2020-08-16 08:33:44 +00:00
|
|
|
thunderbird # The ultimate email client for dumbasses like me.
|
|
|
|
zathura # The ultimate PDF viewer for run-of-the-mill ricing.
|
|
|
|
];
|
|
|
|
};
|
|
|
|
}
|