This commit is contained in:
2024-04-28 15:11:56 -06:00
parent 39d2219bb1
commit 39157db0da
20 changed files with 62 additions and 139 deletions

View File

@@ -1,22 +1,18 @@
{ config, lib, pkgs, ... }:
{
{ config, lib, pkgs, ... }: {
options.my.apps.multimedia.enable = lib.mkEnableOption "enable";
config = lib.mkIf config.my.apps.multimedia.enable {
users.users.jawz.packages = with pkgs; ([
# cozy # audiobooks player
# gnome-podcasts # podcast player
# hakuneko # manga & comic GUI downloader
users.users.jawz.packages = with pkgs; [
celluloid # video player
curtail # image compressor
easyeffects # equalizer
# (handbrake.override {
# useGtk = true;
# }) # video converter, may be unnecessary
handbrake # video converter, may be unnecessary
identity # compare images or videos
mousai # poor man shazam
shortwave # listen to world radio
tagger # tag music files
]);
# cozy # audiobooks player
# gnome-podcasts # podcast player
# hakuneko # manga & comic GUI downloader
];
};
}