summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbrustybee <bee@4d2.org>2026-03-19 23:39:48 +0530
committerbrustybee <bee@4d2.org>2026-03-19 23:39:48 +0530
commitf9142a5822a4f212a3031b932cbf51b2d50344a8 (patch)
treee77663c8be81aa8d08b5bda5a5e249181b5aedb2
parent6e709195b0d27903983e079c1c366bb7de0b753e (diff)
add thunderbird chnage window opacity and fix feh cmd
-rw-r--r--common/modules/dwm/default.nix2
-rw-r--r--common/modules/dwm/picom.nix4
-rw-r--r--common/modules/matugen/templates/matugen-vesktop.nix2
-rw-r--r--hosts/nixios/default.nix11
-rw-r--r--users/common.nix1
5 files changed, 16 insertions, 4 deletions
diff --git a/common/modules/dwm/default.nix b/common/modules/dwm/default.nix
index f36c9e2..e5985ae 100644
--- a/common/modules/dwm/default.nix
+++ b/common/modules/dwm/default.nix
@@ -86,7 +86,7 @@ in
gnome-keyring-daemon --start --components=secrets,ssh,pkcs11 &
${pkgs.polkit_gnome}/libexec/polkit-gnome-authentication-agent-1 &
- feh --no-fehbg --bg-fill "$(rg wallpaper beeSettings | cut -d"=" -f2)"
+ feh --no-fehbg --bg-fill "$(rg wallpaper ~/.config/beeSettings | cut -d"=" -f2)"
[ -f ~/.Xresources ] && xrdb -merge ~/.Xresources
dunst &
diff --git a/common/modules/dwm/picom.nix b/common/modules/dwm/picom.nix
index 8e7d4b5..b338df8 100644
--- a/common/modules/dwm/picom.nix
+++ b/common/modules/dwm/picom.nix
@@ -9,8 +9,8 @@ in
backend = "glx";
vSync = true;
- activeOpacity = if cfg.window.blur.enable then 0.90 else cfg.window.opacity.active;
- inactiveOpacity = if cfg.window.blur.enable then 0.90 else cfg.window.opacity.inactive;
+ activeOpacity = if cfg.window.blur.enable then 0.82 else cfg.window.opacity.active;
+ inactiveOpacity = if cfg.window.blur.enable then 0.82 else cfg.window.opacity.inactive;
opacityRules = [
"100:fullscreen"
diff --git a/common/modules/matugen/templates/matugen-vesktop.nix b/common/modules/matugen/templates/matugen-vesktop.nix
index 44a6b20..6ba0053 100644
--- a/common/modules/matugen/templates/matugen-vesktop.nix
+++ b/common/modules/matugen/templates/matugen-vesktop.nix
@@ -34,7 +34,7 @@
--border-hover-transition: 0.2s ease;
/* animation/transition options */
- --animations: on;
+ --animations: off;
--list-item-transition: 0.2s ease;
--dms-icon-svg-transition: 0.4s ease;
diff --git a/hosts/nixios/default.nix b/hosts/nixios/default.nix
index dc53e95..7fd1f56 100644
--- a/hosts/nixios/default.nix
+++ b/hosts/nixios/default.nix
@@ -15,6 +15,7 @@
./hardware-configuration.nix
(import ../common.nix { inherit user; })
beeMods
+ inputs.omnisearch.nixosModules.default
];
services.logind = {
@@ -25,6 +26,16 @@
};
};
+ services.omnisearch = {
+ enable = true;
+ settings = {
+ server = {
+ port = 8087;
+ domain = "https://search.bee.me";
+ };
+ };
+ };
+
# REMOVE LATER
virtualisation.vmVariant = {
users.users.${user}.password = "1";
diff --git a/users/common.nix b/users/common.nix
index 0df7167..afd6141 100644
--- a/users/common.nix
+++ b/users/common.nix
@@ -103,6 +103,7 @@
element-desktop
zed-editor-fhs
wlsunset
+ thunderbird
(pkgs.obsidian.override {
electron = pkgs.electron_40;
})