mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 22:57:55 +00:00
24 lines
716 B
Nix
24 lines
716 B
Nix
|
# 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; [
|
||
|
hexchat # The ultimate IRC client for neckbeards.
|
||
|
mpv # The ultimate media player for hipsters.
|
||
|
newsboat # The ultimate RSS aggregator for some person.
|
||
|
openshot-qt # A decent video editor.
|
||
|
thunderbird # The ultimate email client for dumbasses like me.
|
||
|
zathura # The ultimate PDF viewer for run-of-the-mill ricing.
|
||
|
];
|
||
|
};
|
||
|
}
|