fix(nix): disabled error message about raid
This commit is contained in:
parent
68c1d223d9
commit
bbf96b34c5
2 changed files with 4 additions and 3 deletions
|
@ -21,7 +21,7 @@ export const Gesture = ({
|
||||||
|
|
||||||
[gesture, box => {
|
[gesture, box => {
|
||||||
const velocity = gesture.get_velocity()[1];
|
const velocity = gesture.get_velocity()[1];
|
||||||
if (velocity < -50)
|
if (velocity < -100)
|
||||||
openWindow('quick-settings');
|
openWindow('quick-settings');
|
||||||
}, 'update'],
|
}, 'update'],
|
||||||
|
|
||||||
|
|
|
@ -39,10 +39,11 @@
|
||||||
|
|
||||||
plymouth = {
|
plymouth = {
|
||||||
enable = true;
|
enable = true;
|
||||||
#themePackages = [ pkgs.catppuccin-plymouth ];
|
|
||||||
#theme = "catppuccin-macchiato";
|
|
||||||
themePackages = [ pkgs.dracula-plymouth ];
|
themePackages = [ pkgs.dracula-plymouth ];
|
||||||
theme = "dracula";
|
theme = "dracula";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# https://github.com/NixOS/nixpkgs/issues/254807#issuecomment-1722351771
|
||||||
|
swraid.enable = false;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue