From bbf96b34c5ed114f36acf38b97d6063a8eb1fcee Mon Sep 17 00:00:00 2001 From: matt1432 Date: Tue, 19 Sep 2023 09:36:39 -0400 Subject: [PATCH] fix(nix): disabled error message about raid --- config/ags/js/bar/gesture.js | 2 +- nixos/cfg/boot.nix | 5 +++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/config/ags/js/bar/gesture.js b/config/ags/js/bar/gesture.js index 0097ec6..a90815f 100644 --- a/config/ags/js/bar/gesture.js +++ b/config/ags/js/bar/gesture.js @@ -21,7 +21,7 @@ export const Gesture = ({ [gesture, box => { const velocity = gesture.get_velocity()[1]; - if (velocity < -50) + if (velocity < -100) openWindow('quick-settings'); }, 'update'], diff --git a/nixos/cfg/boot.nix b/nixos/cfg/boot.nix index 864466a..8d0ff89 100644 --- a/nixos/cfg/boot.nix +++ b/nixos/cfg/boot.nix @@ -39,10 +39,11 @@ plymouth = { enable = true; - #themePackages = [ pkgs.catppuccin-plymouth ]; - #theme = "catppuccin-macchiato"; themePackages = [ pkgs.dracula-plymouth ]; theme = "dracula"; }; + + # https://github.com/NixOS/nixpkgs/issues/254807#issuecomment-1722351771 + swraid.enable = false; }; }