fix(nix): PassFF Host symlink

This commit is contained in:
Ahmad Ansori Palembani 2024-10-20 11:37:27 +07:00
parent 59b6868a69
commit 2eb373e8a7
Signed by: null2264
GPG key ID: BA64F8B60AF3EFB6
2 changed files with 2 additions and 4 deletions

View file

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

View file

@ -16,5 +16,7 @@
''; '';
}; };
home.file.".floorp/native-messaging-hosts/passff.json".source = "${pkgs.passff-host}/share/passff-host/passff.json";
home.stateVersion = "24.11"; home.stateVersion = "24.11";
} }