diff --git a/.config/nix/modules/home-manager/floorp.nix b/.config/nix/modules/home-manager/floorp.nix index e2ef48b..da9d91b 100644 --- a/.config/nix/modules/home-manager/floorp.nix +++ b/.config/nix/modules/home-manager/floorp.nix @@ -1,16 +1,16 @@ { pkgs, config, vars, ... }: { - programs = { - floorp = { - enable = true; - # REF: https://github.com/nix-community/home-manager/blob/342a1d682386d3a1d74f9555cb327f2f311dda6e/modules/programs/firefox/mkFirefoxModule.nix#L264 - package = null; # we only want the config - profiles = { - ${vars.name} = { - userChrome = builtins.readFile ../../files/floorp/userChrome.css; - }; - }; + programs.floorp = { + enable = true; + # REF: https://github.com/nix-community/home-manager/blob/342a1d682386d3a1d74f9555cb327f2f311dda6e/modules/programs/firefox/mkFirefoxModule.nix#L264 + package = null; # we only want the config + nativeMessagingHosts = + [ + #pkgs.passff-host # FIXME: Broken symlink + ]; + profiles.${vars.name} = { + userChrome = builtins.readFile ../../files/floorp/userChrome.css; }; }; }