mirror of
https://github.com/danbulant/dotfiles
synced 2026-09-17 13:23:51 +00:00
fixes
This commit is contained in:
parent
dd039cab6c
commit
402a348601
2 changed files with 14 additions and 0 deletions
|
|
@ -41,6 +41,7 @@
|
||||||
],
|
],
|
||||||
"semantic_tokens": "combined",
|
"semantic_tokens": "combined",
|
||||||
"cli_default_open_behavior": "existing_window",
|
"cli_default_open_behavior": "existing_window",
|
||||||
|
"file_scan_exclusions": ["**/node_modules", "..."],
|
||||||
"languages": {
|
"languages": {
|
||||||
"JavaScript": {
|
"JavaScript": {
|
||||||
"formatter": { "language_server": { "name": "biome" } },
|
"formatter": { "language_server": { "name": "biome" } },
|
||||||
|
|
|
||||||
|
|
@ -118,6 +118,19 @@ in
|
||||||
];
|
];
|
||||||
|
|
||||||
services.hardware.openrgb.enable = true;
|
services.hardware.openrgb.enable = true;
|
||||||
|
|
||||||
|
# OpenRGB's GUI shutdown action runs too late during session teardown. Blank
|
||||||
|
# the controllers while udev and the Nix store are still available instead.
|
||||||
|
systemd.services.openrgb-shutdown = {
|
||||||
|
description = "Turn off RGB lighting before shutdown";
|
||||||
|
wantedBy = [ "shutdown.target" ];
|
||||||
|
before = [ "shutdown.target" ];
|
||||||
|
unitConfig.DefaultDependencies = false;
|
||||||
|
serviceConfig = {
|
||||||
|
Type = "oneshot";
|
||||||
|
ExecStart = "${lib.getExe pkgs.openrgb-with-all-plugins} --device B850 --mode static --color 000000 --device Wooting --color 000000";
|
||||||
|
};
|
||||||
|
};
|
||||||
# The split RemoteDesktop/ScreenCast portal session emits malformed D-Bus
|
# The split RemoteDesktop/ScreenCast portal session emits malformed D-Bus
|
||||||
# traffic with XDPH 1.4.1. Override capture without replacing Sunshine's
|
# traffic with XDPH 1.4.1. Override capture without replacing Sunshine's
|
||||||
# mutable web-UI configuration.
|
# mutable web-UI configuration.
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue