20 lines
683 B
Nix
20 lines
683 B
Nix
{ pkgs, ... }@all: with all;
|
|
# browser.tabs.allow_transparent_browser
|
|
# https://www.reddit.com/r/FirefoxCSS/comments/1dqws4b/firefox_128_will_allow_the_main_browser_content/
|
|
{
|
|
programs.firefox.profiles."{hyper.user}".settings = {
|
|
"widget.use-xdg-desktop-portal.file-picker" = 1;
|
|
};
|
|
home = {
|
|
packages = with pkgs; [
|
|
firefox
|
|
];
|
|
file = with rice.color; let
|
|
blur = builtins.toString 20;
|
|
f = rice.lib.hex-to-rgb-comma-string;
|
|
in {
|
|
".mozilla/firefox/${hyper.user}/chrome/userChrome.css".text = import ./userChrome.nix rice;
|
|
".mozilla/firefox/${hyper.user}/chrome/userContent.css".text = import ./userContent.nix rice; };
|
|
};
|
|
}
|