Switched hw acceleration to enhance chromium UX

This commit is contained in:
2025-07-12 19:58:19 +03:00
parent c2ce919b9e
commit a648f87a1e
6 changed files with 61 additions and 41 deletions

View File

@@ -1,4 +1,8 @@
{ config, pkgs, ... }: {
{
config,
pkgs,
...
}: {
services.syncthing = {
enable = true;
openDefaultPorts = true;
@@ -14,33 +18,30 @@
settings = {
devices = {
"phone" = {
id =
"N3RII7R-4YOKJ46-HY6NSTD-TPE7SW4-N66CWVQ-J2JVW7E-NARRMBF-JG27YQ7";
id = "N3RII7R-4YOKJ46-HY6NSTD-TPE7SW4-N66CWVQ-J2JVW7E-NARRMBF-JG27YQ7";
};
"bigbox" = {
id =
"RFFXZJI-HJTEDCU-M7MU3SW-M7DJK4U-MESRKYA-OGHYOSG-KNZO7JB-6LQ5VAE";
id = "RFFXZJI-HJTEDCU-M7MU3SW-M7DJK4U-MESRKYA-OGHYOSG-KNZO7JB-6LQ5VAE";
};
};
folders = {
"brain_zero" = {
# Name of folder in Syncthing, also the folder ID
path = "/home/user/brain_zero/"; # Which folder to add to Syncthing
devices = [ "phone" ]; # Which devices to share the folder with
ignores =
[ ".obsidian/workspace-mobile.json" ".obsidian/workspace.json" ];
devices = ["phone"]; # Which devices to share the folder with
ignores = [".obsidian/workspace-mobile.json" ".obsidian/workspace.json"];
};
"brain_zero_readonly" = {
# Name of folder in Syncthing, also the folder ID
path = "/home/user/brain_zero/"; # Which folder to add to Syncthing
type = "sendonly";
devices = [ "bigbox" ]; # Which devices to share the folder with
devices = ["bigbox"]; # Which devices to share the folder with
};
"puter_home" = {
path = "/home/user/";
type = "sendonly";
devices = [ "bigbox" ];
ignores = [ ".*" "!.ssh/" ];
devices = ["bigbox"];
ignores = [".*" "!.ssh/"];
};
};
};