diff options
| author | triethyl <triethylammonium@pm.me> | 2025-10-19 19:51:17 -0400 |
|---|---|---|
| committer | triethyl <triethylammonium@pm.me> | 2025-10-19 19:51:17 -0400 |
| commit | 0152f90358f475c1ea7101f16b7812506fe813d2 (patch) | |
| tree | 6084e80a4d61f5567b667a76ab2d140e46907574 /home-manager/features/gui/apps | |
| parent | 1b73d4698726f1769654f7602aba845e296346b0 (diff) | |
features: configured librewolf
Diffstat (limited to 'home-manager/features/gui/apps')
| -rw-r--r-- | home-manager/features/gui/apps/librewolf.nix | 33 |
1 files changed, 26 insertions, 7 deletions
diff --git a/home-manager/features/gui/apps/librewolf.nix b/home-manager/features/gui/apps/librewolf.nix index fc6c2c4..9bc0c05 100644 --- a/home-manager/features/gui/apps/librewolf.nix +++ b/home-manager/features/gui/apps/librewolf.nix @@ -8,12 +8,31 @@ in { options.features.gui.apps.librewolf.enable = lib.mkEnableOption "librewolf"; config = lib.mkIf cfg.enable { - # programs.librewolf = { - # enable = true; - # settings = { - # "browser.tabs.inTitlebar" = 0; - # }; - # }; - home.packages = [ pkgs.librewolf-bin ]; + programs.librewolf = { + enable = true; + settings = { + "browser.tabs.inTitlebar" = 0; + }; + # profiles."lucas" = { + # search = { + # force = true; + # default = "DuckDuckGo"; + # # engines = { + # # "Nix Packages" = { + # # urls = [{ + # # template = "https://search.nixos.org/packages"; + # # params = [ + # # { name = "type"; value = "packages"; } + # # { name = "channel"; value = "unstable"; } + # # { name = "query"; value = "{searchTerms}"; } + # # ]; + # # }]; + # # icon = "${pkgs.nixos-icons}/share/icons/hicolor/scalable/apps/nix-snowflake.svg"; + # # definedAliases = [ "@n" ]; + # # }; + # # }; + # }; + # }; + }; }; } |
