]> Skullheadx's Git Forge - nixos.git/commitdiff
tried qute browser
authorAndrew <admonty1@protonmail.com>
Sun, 31 Aug 2025 23:37:53 +0000 (19:37 -0400)
committerAndrew <admonty1@protonmail.com>
Sun, 31 Aug 2025 23:37:53 +0000 (19:37 -0400)
brave-config.nix
home.nix
neovim.nix
qutebrowser.nix [new file with mode: 0644]

index 39ff86a3b0afe5de58744661703f09918ea49efa..cc78b9c25009af9e05bb367b56c7307b002f24f2 100644 (file)
@@ -1,5 +1,8 @@
-{ config, pkgs, ... }:
 {
+  config,
+  pkgs,
+  ...
+}: {
   home.file = {
     ".config/BraveSoftware/Brave-Browser/Local State" = {
       source = ./brave-config/Local-State;
index 0d41289565cd81e5a3cd32a5211ba567a89cae5e..90c25eda48439e0371f8cdb0c52ddfe4688e701d 100644 (file)
--- a/home.nix
+++ b/home.nix
@@ -26,6 +26,7 @@
     ./rmpc-config.nix
     ./waybar.nix
     ./freetube.nix
+    ./qutebrowser.nix
   ];
 
   # Home Manager needs a bit of information about you and the paths it should
index 99703fd88ec379e5a28c3682cdc2883ee97c5018..9c5e715d99c45b34c5b515f5dc3d970d53044c62 100644 (file)
               enabled = true;
               render_modes = false;
               icons = ["●" "○" "◆" "◇"];
-              ordered_icons = ''
-                function(ctx)
-                  local value = vim.trim(ctx.value)
-                  local index = tonumber(value:sub(1, #value - 1))
-                  return ('%d.'):format(index > 1 and index or ctx.index)
-                end
-              '';
+              #              ordered_icons = ''
+              #                function(ctx)
+              #                  local value = vim.trim(ctx.value)
+              #                  local index = tonumber(value:sub(1, #value - 1))
+              #                  return ('%d.'):format(index > 1 and index or ctx.index)
+              #                end
+              #              '';
               left_pad = 0;
               right_pad = 0;
               highlight = "RenderMarkdownBullet";
diff --git a/qutebrowser.nix b/qutebrowser.nix
new file mode 100644 (file)
index 0000000..5a59761
--- /dev/null
@@ -0,0 +1,11 @@
+{
+  config,
+  pkgs,
+  ...
+}: {
+  programs.qutebrowser = {
+    enable = true;
+    settings = {
+    };
+  };
+}