summaryrefslogtreecommitdiff
path: root/home-manager/features/gui/apps/librewolf.nix
diff options
context:
space:
mode:
Diffstat (limited to 'home-manager/features/gui/apps/librewolf.nix')
-rw-r--r--home-manager/features/gui/apps/librewolf.nix38
1 files changed, 0 insertions, 38 deletions
diff --git a/home-manager/features/gui/apps/librewolf.nix b/home-manager/features/gui/apps/librewolf.nix
deleted file mode 100644
index 9bc0c05..0000000
--- a/home-manager/features/gui/apps/librewolf.nix
+++ /dev/null
@@ -1,38 +0,0 @@
-{
- config,
- pkgs,
- lib,
- ...
-}: let
- cfg = config.features.gui.apps.librewolf;
-in {
- options.features.gui.apps.librewolf.enable = lib.mkEnableOption "librewolf";
- config = lib.mkIf cfg.enable {
- 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" ];
- # # };
- # # };
- # };
- # };
- };
- };
-}