mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-12-08 05:49:25 -06:00
12 lines
193 B
Nix
12 lines
193 B
Nix
|
|
{
|
||
|
|
programs.freetube =
|
||
|
|
let
|
||
|
|
configPath = ./config;
|
||
|
|
settingsPath = import (configPath + /settings.nix);
|
||
|
|
in
|
||
|
|
{
|
||
|
|
enable = true;
|
||
|
|
settings = settingsPath;
|
||
|
|
};
|
||
|
|
}
|