mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-11 05:10:05 +00:00
✨ Add Firefox configuration
This commit is contained in:
parent
8473347b4e
commit
5dd5bf894f
4 changed files with 549 additions and 64 deletions
19
homes/x86_64-linux/jo/apps/firefox/default.nix
Normal file
19
homes/x86_64-linux/jo/apps/firefox/default.nix
Normal file
|
@ -0,0 +1,19 @@
|
|||
{ lib, config, ... }:
|
||||
let
|
||||
inherit (lib) mkIf;
|
||||
in
|
||||
{
|
||||
programs.firefox = mkIf config.programs.firefox.enable {
|
||||
# Required settings for Onebar
|
||||
profiles.default.settings = {
|
||||
"toolkit.legacyUserProfileCustomizations.stylesheets" = true;
|
||||
};
|
||||
};
|
||||
|
||||
home.file.".mozilla/firefox/default/chrome/userChrome.css".text =
|
||||
mkIf config.programs.firefox.enable ''
|
||||
@import "onebar/onebar.css";
|
||||
'';
|
||||
|
||||
home.file.".mozilla/firefox/default/chrome/onebar/onebar.css".source = ./onebar.css;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue