mirror of
https://github.com/Jokiller230/puzzlevision.git
synced 2025-09-09 12:20:04 +00:00
19 lines
506 B
Nix
19 lines
506 B
Nix
{ 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;
|
|
}
|