5 Commits

5 changed files with 26 additions and 7 deletions
+2 -1
View File
@@ -30,7 +30,8 @@
shake = {
enabled = true;
threshold = 4.0;
factor = 1.5;
limit = 4.0;
timeout = 200;
};
};
+1
View File
@@ -1,5 +1,6 @@
{pkgs, ...}: {
home.packages = with pkgs; [
# FIXME: only dark mode works. use matugen
jellyfin-tui
];
}
+1 -1
View File
@@ -163,7 +163,7 @@ in {
"cpu" = {
interval = 5;
format = "󰍛";
on-click = "hakase-popup-launch btop 800 600";
on-click = "hakase-popup-launch btop";
on-click-right = "xdg-terminal-exec";
};
+3 -3
View File
@@ -5,13 +5,13 @@
home.pointerCursor = {
gtk.enable = true;
package = pkgs.rose-pine-hyprcursor;
name = "rose-pine-hyprcursor";
package = pkgs.catppuccin-cursors.mochaDark;
name = "Catppuccin Mocha Dark";
size = 24;
};
wayland.windowManager.hyprland.settings = {
env = [
"HYPRCURSOR_THEME,rose-pine-hyprcursor"
"HYPRCURSOR_THEME,Catppuccin Mocha Dark"
"HYPRCURSOR_SIZE,24"
];
};
+19 -2
View File
@@ -1,4 +1,21 @@
{pkgs, ...}: {
# USB wakeup configuration - Temporarily Disabled
# systemd.services.disable-usb-wakeups = { ... };
# USB wakeup configuration
# Disabling USB wakeups to prevent accidental wakeups from mouse/keyboard/bluetooth
systemd.services.disable-usb-wakeups = {
description = "Disable USB wakeup triggers";
wantedBy = ["multi-user.target" "post-resume.target"];
after = ["post-resume.target"];
serviceConfig = {
Type = "oneshot";
ExecStart = pkgs.writeShellScript "disable-usb-wakeups" ''
for device in XHC0 XHC1 XHC2 XH00 GPP0 GPP7; do
if grep -q "$device.*enabled" /proc/acpi/wakeup; then
echo "Disabling wakeup for $device"
echo "$device" > /proc/acpi/wakeup
fi
done
'';
RemainAfterExit = true;
};
};
}