dotfiles/modules/home/gui/apps/media/video/videoPlaying/freetube/default.nix

12 lines
193 B
Nix
Raw Normal View History

2025-01-19 23:40:54 -06:00
{
programs.freetube =
let
configPath = ./config;
settingsPath = import (configPath + /settings.nix);
in
{
enable = true;
settings = settingsPath;
};
}