Move various packages to programs dir

This commit is contained in:
ItsDrike 2024-06-24 19:36:31 +02:00
parent 36aced3350
commit 4c86bb8ce6
Signed by: ItsDrike
GPG key ID: FA2745890B7048C0
6 changed files with 4 additions and 4 deletions

View file

@ -0,0 +1,17 @@
{
lib,
pkgs,
osConfig,
...
}: let
inherit (lib) mkIf;
cfg = osConfig.myOptions.home-manager.programs.applications.stremio;
in {
config = mkIf cfg.enable {
home.packages = with pkgs; [
stremio
];
};
}