17 lines
575 B
Nix
17 lines
575 B
Nix
{ pkgs, ... }@all: with all; {
|
|
programs.firefox.profiles."{hyper.user}".settings = {
|
|
"widget.use-xdg-desktop-portal.file-picker" = 1;
|
|
};
|
|
home = {
|
|
packages = with pkgs; [
|
|
firefox
|
|
];
|
|
file = {
|
|
".mozilla/firefox/${hyper.user}/chrome/userChrome.css".text = import ./userChrome.nix rice;
|
|
".mozilla/firefox/${hyper.user}/chrome/userContent.css".text = import ./userContent.nix rice;
|
|
};
|
|
};
|
|
}
|
|
# browser.tabs.allow_transparent_browser
|
|
# https://www.reddit.com/r/FirefoxCSS/comments/1dqws4b/firefox_128_will_allow_the_main_browser_content/
|