mirror of
https://github.com/youwen5/nixos.git
synced 2025-02-07 21:11:11 -08:00
fix(vesktop): commit settings.json and set mkOutOfStoreSymlink properly
Some checks are pending
Check flake / check (push) Waiting to run
Some checks are pending
Check flake / check (push) Waiting to run
This commit is contained in:
parent
ddb398d725
commit
23b64ca198
2 changed files with 616 additions and 610 deletions
|
@ -2,6 +2,7 @@
|
||||||
pkgs,
|
pkgs,
|
||||||
lib,
|
lib,
|
||||||
config,
|
config,
|
||||||
|
osConfig,
|
||||||
...
|
...
|
||||||
}:
|
}:
|
||||||
{
|
{
|
||||||
|
@ -26,7 +27,8 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
home.file = lib.mkIf config.liminalOS.programs.enable {
|
home.file = lib.mkIf config.liminalOS.programs.enable {
|
||||||
".config/vesktop/settings.json".source = config.lib.file.mkOutOfStoreSymlink ./var/settings.json;
|
".config/vesktop/settings.json".source =
|
||||||
|
config.lib.file.mkOutOfStoreSymlink "${osConfig.liminalOS.flakeLocation}/hm/modules/linux/var/settings.json";
|
||||||
};
|
};
|
||||||
|
|
||||||
services.gnome-keyring.enable = true;
|
services.gnome-keyring.enable = true;
|
||||||
|
|
|
@ -3,7 +3,9 @@
|
||||||
"autoUpdateNotification": true,
|
"autoUpdateNotification": true,
|
||||||
"useQuickCss": true,
|
"useQuickCss": true,
|
||||||
"themeLinks": [],
|
"themeLinks": [],
|
||||||
"enabledThemes": ["stylix.theme.css"],
|
"enabledThemes": [
|
||||||
|
"stylix.theme.css"
|
||||||
|
],
|
||||||
"enableReactDevtools": false,
|
"enableReactDevtools": false,
|
||||||
"frameless": false,
|
"frameless": false,
|
||||||
"transparent": false,
|
"transparent": false,
|
||||||
|
@ -606,5 +608,7 @@
|
||||||
"url": "https://api.vencord.dev/",
|
"url": "https://api.vencord.dev/",
|
||||||
"settingsSync": false,
|
"settingsSync": false,
|
||||||
"settingsSyncVersion": 1731210778467
|
"settingsSyncVersion": 1731210778467
|
||||||
}
|
},
|
||||||
|
"splashColor": "rgb(242, 244, 248)",
|
||||||
|
"splashBackground": "rgb(22, 22, 22)"
|
||||||
}
|
}
|
Loading…
Reference in a new issue