nixos-config/modules/desktop/multimedia.nix
Gabriel Arazas 4085fce69c Make the setup hardware-independent
One of the bigger changes is to make the setup hardware-independent
which is nice for easier (re-)installations.
Finally about time it happens.

Another big thing is the update of the README, now with some
self-reminding pitch why choose NixOS (or something similar like GuixSD)
which could be nice for other people too, provided they've come across
my NixOS config.

I made the module docstrings a bit more consistent (though still
useless, to be honest).
I've also updated config for Visual Studio Code.
2020-09-01 23:10:44 +08:00

27 lines
959 B
Nix
Executable File

# 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; [
ffmpeg # The ultimate multimedia toolkit for everybody!
hexchat # The ultimate IRC client for neckbeards.
kdenlive # A decent free and open source video editor.
mpv # The ultimate media player for hipsters.
newsboat # The ultimate RSS aggregator for some person.
obs-studio # Open Broadcasting Studio Studio, the reliable recording workflow.
obs-linuxbrowser # OBS plugin for browser source.
thunderbird # The ultimate email client for dumbasses like me.
zathura # The ultimate PDF viewer for run-of-the-mill ricing.
];
};
}