trying to get darkly to work
This commit is contained in:
parent
08b073d709
commit
eaeb0247bd
|
@ -137,7 +137,7 @@
|
||||||
{
|
{
|
||||||
home-manager.useGlobalPkgs = true;
|
home-manager.useGlobalPkgs = true;
|
||||||
home-manager.useUserPackages = true;
|
home-manager.useUserPackages = true;
|
||||||
# home-manager.extraSpecialArgs = { inherit ags; };
|
home-manager.extraSpecialArgs = { inherit inputs; };
|
||||||
home-manager.users.chris = import ./home/home.nix;
|
home-manager.users.chris = import ./home/home.nix;
|
||||||
}
|
}
|
||||||
];
|
];
|
||||||
|
|
|
@ -558,33 +558,33 @@ in {
|
||||||
|
|
||||||
home.file.".mozilla/firefox/nw77o6yc.default/user.js" = {
|
home.file.".mozilla/firefox/nw77o6yc.default/user.js" = {
|
||||||
text = ''
|
text = ''
|
||||||
// userchrome.css usercontent.css activate
|
// userchrome.css usercontent.css activate
|
||||||
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
|
user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true);
|
||||||
|
|
||||||
// enable new sidebar
|
// disable new sidebar
|
||||||
user_pref("sidebar.revamp", true);
|
user_pref("sidebar.revamp", false);
|
||||||
|
|
||||||
// Fill SVG Color
|
// Fill SVG Color
|
||||||
user_pref("svg.context-properties.content.enabled", true);
|
user_pref("svg.context-properties.content.enabled", true);
|
||||||
|
|
||||||
// CSS's `:has()` selector
|
// CSS's `:has()` selector
|
||||||
user_pref("layout.css.has-selector.enabled", true);
|
user_pref("layout.css.has-selector.enabled", true);
|
||||||
|
|
||||||
// Integrated calculator at urlbar
|
// Integrated calculator at urlbar
|
||||||
user_pref("browser.urlbar.suggest.calculator", true);
|
user_pref("browser.urlbar.suggest.calculator", true);
|
||||||
|
|
||||||
// Integrated unit convertor at urlbar
|
// Integrated unit convertor at urlbar
|
||||||
user_pref("browser.urlbar.unitConversion.enabled", true);
|
user_pref("browser.urlbar.unitConversion.enabled", true);
|
||||||
|
|
||||||
// Trim URL
|
// Trim URL
|
||||||
user_pref("browser.urlbar.trimHttps", true);
|
user_pref("browser.urlbar.trimHttps", true);
|
||||||
user_pref("browser.urlbar.trimURLs", true);
|
user_pref("browser.urlbar.trimURLs", true);
|
||||||
|
|
||||||
// GTK rounded corners
|
// GTK rounded corners
|
||||||
user_pref("widget.gtk.rounded-bottom-corners.enabled", true);
|
user_pref("widget.gtk.rounded-bottom-corners.enabled", true);
|
||||||
|
|
||||||
// Who is bogus? (fixes Sidebery tab dragging on Linux)
|
// Who is bogus? (fixes Sidebery tab dragging on Linux)
|
||||||
user_pref("widget.gtk.ignore-bogus-leave-notify", 1);
|
user_pref("widget.gtk.ignore-bogus-leave-notify", 1);
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue