refactor: inputs/ --> {sys,home}/
This commit is contained in:
parent
8f22a24963
commit
f77c627980
225 changed files with 77 additions and 88 deletions
20
home/modules/desktop/media/video/default.nix
Normal file
20
home/modules/desktop/media/video/default.nix
Normal file
|
|
@ -0,0 +1,20 @@
|
|||
{ lib, ... }:
|
||||
{
|
||||
imports = [
|
||||
./youtube
|
||||
./jellyfin
|
||||
./mpv
|
||||
];
|
||||
|
||||
options.homeModules.desktop.media.video = {
|
||||
mpv = {
|
||||
enable = lib.mkEnableOption "Enable mpv video player";
|
||||
};
|
||||
youtube = {
|
||||
enable = lib.mkEnableOption "Enable youtube tui player";
|
||||
};
|
||||
jellyfin = {
|
||||
enable = lib.mkEnableOption "Enable jellyifn media player";
|
||||
};
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue