From eaeb0247bd33d007a22030b157fd4ea31049a988 Mon Sep 17 00:00:00 2001 From: Chris Cochrun Date: Thu, 13 Mar 2025 11:46:44 -0500 Subject: [PATCH] trying to get darkly to work --- flake.nix | 2 +- home/home.nix | 38 +++++++++++++++++++------------------- 2 files changed, 20 insertions(+), 20 deletions(-) diff --git a/flake.nix b/flake.nix index 82be9b5..41dc254 100644 --- a/flake.nix +++ b/flake.nix @@ -137,7 +137,7 @@ { home-manager.useGlobalPkgs = true; home-manager.useUserPackages = true; - # home-manager.extraSpecialArgs = { inherit ags; }; + home-manager.extraSpecialArgs = { inherit inputs; }; home-manager.users.chris = import ./home/home.nix; } ]; diff --git a/home/home.nix b/home/home.nix index f4d566b..4f75db2 100644 --- a/home/home.nix +++ b/home/home.nix @@ -558,33 +558,33 @@ in { home.file.".mozilla/firefox/nw77o6yc.default/user.js" = { text = '' - // userchrome.css usercontent.css activate - user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); + // userchrome.css usercontent.css activate + user_pref("toolkit.legacyUserProfileCustomizations.stylesheets", true); - // enable new sidebar - user_pref("sidebar.revamp", true); + // disable new sidebar + user_pref("sidebar.revamp", false); - // Fill SVG Color - user_pref("svg.context-properties.content.enabled", true); + // Fill SVG Color + user_pref("svg.context-properties.content.enabled", true); - // CSS's `:has()` selector - user_pref("layout.css.has-selector.enabled", true); + // CSS's `:has()` selector + user_pref("layout.css.has-selector.enabled", true); - // Integrated calculator at urlbar - user_pref("browser.urlbar.suggest.calculator", true); + // Integrated calculator at urlbar + user_pref("browser.urlbar.suggest.calculator", true); - // Integrated unit convertor at urlbar - user_pref("browser.urlbar.unitConversion.enabled", true); + // Integrated unit convertor at urlbar + user_pref("browser.urlbar.unitConversion.enabled", true); - // Trim URL - user_pref("browser.urlbar.trimHttps", true); - user_pref("browser.urlbar.trimURLs", true); + // Trim URL + user_pref("browser.urlbar.trimHttps", true); + user_pref("browser.urlbar.trimURLs", true); - // GTK rounded corners - user_pref("widget.gtk.rounded-bottom-corners.enabled", true); + // GTK rounded corners + user_pref("widget.gtk.rounded-bottom-corners.enabled", true); - // Who is bogus? (fixes Sidebery tab dragging on Linux) - user_pref("widget.gtk.ignore-bogus-leave-notify", 1); + // Who is bogus? (fixes Sidebery tab dragging on Linux) + user_pref("widget.gtk.ignore-bogus-leave-notify", 1); ''; };