summaryrefslogtreecommitdiff
path: root/home-manager/modules/apps/desktop/floorp.nix
blob: ebdad901f9267126ebf17c6e6214e7f2177b42b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
{pkgs, config, ...}: {
  programs.floorp = { 
    enable = true; 
    nativeMessagingHosts = [ pkgs.uget-integrator ]; 
  };

  home.packages = with pkgs; [
    uget
    uget-integrator 
  ];
}