mirror of
https://github.com/nix-community/home-manager.git
synced 2025-03-07 01:07:00 +00:00
The path for messaging hosts seems to have been ~/.mozilla/native-messaging-hosts/ and ~/Library/Application Support/Mozilla so vendorPath has been adjusted
32 lines
650 B
Nix
32 lines
650 B
Nix
{ lib, ... }:
|
|
|
|
with lib;
|
|
|
|
let
|
|
|
|
modulePath = [ "programs" "floorp" ];
|
|
|
|
mkFirefoxModule = import ./firefox/mkFirefoxModule.nix;
|
|
|
|
in {
|
|
meta.maintainers = [ hm.maintainers.bricked ];
|
|
|
|
imports = [
|
|
(mkFirefoxModule {
|
|
inherit modulePath;
|
|
name = "Floorp";
|
|
wrappedPackageName = "floorp";
|
|
unwrappedPackageName = "floorp-unwrapped";
|
|
visible = true;
|
|
|
|
platforms.linux = {
|
|
configPath = ".floorp";
|
|
vendorPath = ".mozilla";
|
|
};
|
|
platforms.darwin = {
|
|
configPath = "Library/Application Support/Floorp";
|
|
vendorPath = "Library/Application Support/Mozilla";
|
|
};
|
|
})
|
|
];
|
|
}
|