header order changed, multimedia

This commit is contained in:
2024-04-19 23:31:27 -06:00
parent 36f4b83c82
commit c7b3fdeaba
18 changed files with 53 additions and 42 deletions

View File

@@ -1,4 +1,4 @@
{ config, pkgs, lib, unstable, ... }:
{ config, lib, pkgs, unstable, ... }:
let
unstable = import
(builtins.fetchTarball "https://github.com/nixos/nixpkgs/tarball/master") {

View File

@@ -1,4 +1,4 @@
{ config, pkgs, lib, unstable, ... }:
{ config, lib, pkgs, unstable, ... }:
{
options.my.apps.dictionaries.enable = lib.mkEnableOption "enable";

View File

@@ -1,4 +1,4 @@
{ config, pkgs, lib, unstable, ... }:
{ config, lib, pkgs, unstable, ... }:
{
options.my.apps.fonts.enable = lib.mkEnableOption "enable";

View File

@@ -1,4 +1,4 @@
{ config, pkgs, lib, ... }:
{ config, lib, pkgs, ... }:
{
options.my.apps.gaming.enable = lib.mkEnableOption "enable";

View File

@@ -1,4 +1,4 @@
{ config, pkgs, lib, unstable, ... }:
{ config, lib, pkgs, unstable, ... }:
{
options.my.apps.internet.enable = lib.mkEnableOption "enable";

View File

@@ -0,0 +1,20 @@
{ 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
celluloid # video player
curtail # image compressor
easyeffects # equalizer
handbrake # video converter, may be unnecessary
identity # compare images or videos
mousai # poor man shazam
shortwave # listen to world radio
tagger # tag music files
]);
};
}

View File

@@ -1,4 +1,4 @@
{ config, pkgs, lib, unstable, ... }:
{ config, lib, pkgs, unstable, ... }:
{
options.my.apps.office.enable = lib.mkEnableOption "enable";