mirror of
https://github.com/elkowar/dots-of-war.git
synced 2024-11-06 11:22:23 +00:00
18 lines
760 B
Nix
18 lines
760 B
Nix
{
|
|
enable = true;
|
|
profiles.leon = {
|
|
isDefault = true;
|
|
name = "Main profile";
|
|
extraConfig = builtins.readFile /home/leon/desktop-dotfiles/files/firefoxChrome/chrome/userChrome.js;
|
|
userChrome = builtins.readFile /home/leon/desktop-dotfiles/files/firefoxChrome/chrome/userChrome.css;
|
|
userContent = builtins.readFile /home/leon/desktop-dotfiles/files/firefoxChrome/chrome/userContent.css;
|
|
settings = {
|
|
"browser.startup.homepage" = "file:///home/leon/.config/my_startpage/index.html";
|
|
"browser.search.region" = "DE";
|
|
"browser.search.isUS" = false;
|
|
"distribution.searchplugins.defaultLocale" = "de-DE";
|
|
"general.useragent.locale" = "de-DE";
|
|
"browser.bookmarks.showMobileBookmarks" = true;
|
|
};
|
|
};
|
|
}
|