summaryrefslogtreecommitdiff
path: root/common/programs
diff options
context:
space:
mode:
authorbrustybee <beebeeb5k@gmail.com>2026-04-13 03:04:59 +0530
committerbrustybee <beebeeb5k@gmail.com>2026-04-13 03:04:59 +0530
commit1bb49481dbec223e68df4f60fa1d425525e16cff (patch)
tree66e87c01c39054b7abb51d04bfc50f63b201aaf4 /common/programs
parentf5b78ff561eff75c803ed1ef6e736a6c991cd135 (diff)
This is like that one dream you don't know how to describe
Diffstat (limited to 'common/programs')
-rw-r--r--common/programs/dunst.nix2
-rw-r--r--common/programs/rofi.nix145
-rw-r--r--common/programs/zenBrowser.nix16
3 files changed, 9 insertions, 154 deletions
diff --git a/common/programs/dunst.nix b/common/programs/dunst.nix
index f6d4cbd..e24bedc 100644
--- a/common/programs/dunst.nix
+++ b/common/programs/dunst.nix
@@ -11,7 +11,7 @@ let
in
{
services.dunst = {
- enable = true;
+ enable = false;
settings = {
global = {
font = "monospace 11";
diff --git a/common/programs/rofi.nix b/common/programs/rofi.nix
deleted file mode 100644
index 518bd77..0000000
--- a/common/programs/rofi.nix
+++ /dev/null
@@ -1,145 +0,0 @@
-{
- config,
- pkgs,
- lib,
- ...
-}:
-{
- programs.rofi = {
- enable = true;
- font = "JetBrainsMono Nerd Font";
- plugins = with pkgs; [ rofi-emoji ];
- theme = "~/.config/rofi/themes/config.rasi";
- extraConfig = {
- show-icons = true;
- icon-theme = "Papirus";
- drun-display-format = "{name}";
- };
- };
-
- home.packages = [
- pkgs.rofi-power-menu
- ];
-
- xdg.configFile = {
- "rofi/shared/colors.rasi" = {
- enable = !config.beeMods.matugen.enable;
- text =
- # rasi
- ''
- * {
- bg: #212121;
- bg-alt: #2d2d2d;
- fg: #ffffffdd;
- fg-dim: #616161;
- accent: #80cbc4;
- selected-bg: #424242;
- selected-fg: #80cbc4;
- urgent: #ef9a9a;
- outline: #424242;
- }
- '';
- };
-
- "rofi/themes/config.rasi" = {
- enable = true;
- text =
- # rasi
- ''
- @import "shared/colors.rasi"
- * {
- background-color: transparent;
- text-color: @fg;
- border: 0px;
- margin: 0px;
- padding: 0px;
- spacing: 0px;
- }
-
- window {
- background-color: @bg;
- border-radius: 0px;
- border: 2px;
- border-color: @outline;
- width: 680px;
- padding: 10px;
- }
-
- mainbox {
- background-color: transparent;
- spacing: 8px;
- }
-
- inputbar {
- background-color: @bg-alt;
- border-radius: 0px;
- padding: 10px 12px;
- spacing: 8px;
- children: [entry];
- }
-
- entry {
- background-color: transparent;
- text-color: @fg;
- placeholder-color: @fg-dim;
- placeholder: "Search...";
- cursor: text;
- font: "JetBrainsMono Nerd Font Bold 13";
- }
-
- listview {
- background-color: transparent;
- columns: 1;
- lines: 5;
- spacing: 2px;
- scrollbar: false;
- }
-
- element {
- background-color: transparent;
- border-radius: 0px;
- padding: 8px 12px;
- spacing: 12px;
- children: [element-icon, element-text];
- }
-
- element normal normal {
- background-color: transparent;
- text-color: @fg;
- }
-
- element alternate normal {
- background-color: transparent;
- text-color: @fg;
- }
-
- element selected normal {
- background-color: @selected-bg;
- text-color: @selected-fg;
- }
-
- element normal urgent {
- text-color: @urgent;
- }
-
- element selected urgent {
- background-color: @selected-bg;
- text-color: @urgent;
- }
-
- element-icon {
- background-color: transparent;
- size: 22px;
- }
-
- element-text {
- background-color: transparent;
- text-color: inherit;
- vertical-align: 0.5;
- font: "JetBrainsMono Nerd Font Bold 13";
- }
- '';
- };
-
- };
-}
diff --git a/common/programs/zenBrowser.nix b/common/programs/zenBrowser.nix
index bee6d86..3c24a0d 100644
--- a/common/programs/zenBrowser.nix
+++ b/common/programs/zenBrowser.nix
@@ -75,20 +75,20 @@ in
ExtensionSettings = builtins.listToAttrs extensions;
SearchEngines = {
- # Default = "DuckDuckGo";
- Default = "Omnisearch";
+ Default = "DuckDuckGo";
+ # Default = "Omnisearch";
PreventInstalls = true;
Remove = [
"Google"
"Bing"
];
Add = [
- {
- Name = "Omnisearch";
- URLTemplate = "http://localhost:8087/search?q={searchTerms}";
- IconURL = "http://localhost:8087/static/favicon.ico";
- Alias = ":o";
- }
+ # {
+ # Name = "Omnisearch";
+ # URLTemplate = "http://localhost:8087/search?q={searchTerms}";
+ # IconURL = "http://localhost:8087/static/favicon.ico";
+ # Alias = ":o";
+ # }
{
Name = "nixpkgs packages";
URLTemplate = "https://search.nixos.org/packages?query={searchTerms}";