docs(README): update nix config to new APIs (#511)

This commit is contained in:
isabel 2025-03-29 12:32:53 +00:00 committed by GitHub
parent 8ac8c5e1db
commit 546f56cd34
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -71,24 +71,23 @@ This means that you will have to either:
# in your home-manager options:
catppuccin = {
enable = true;
# optionally change the accent color
# vscode.accent = "pink";
# optionally configure the extension settings, defaults are shown below:
vscode = {
accent = "mauve";
settings = {
boldKeywords = true;
italicComments = true;
italicKeywords = true;
colorOverrides = {};
customUIColors = {};
workbenchMode = "default";
bracketMode = "rainbow";
extraBordersEnabled = false;
};
};
};
programs.vscode = {
enable = true;
# settings can be configured as normal, see extension defaults below:
# userSettings = {
# "catppuccin.boldKeywords": true;
# "catppuccin.italicComments": true;
# "catppuccin.italicKeywords": true;
# "catppuccin.colorOverrides": {},
# "catppuccin.customUIColors": {},
# "catppuccin.workbenchMode": "default",
# "catppuccin.bracketMode": "rainbow",
# "catppuccin.extraBordersEnabled": false,
# "catppuccin.syncWithIconPack": true,
# ...
# };
};
}
```