This seems to compile, so let's try this
This commit is contained in:
parent
a6ddcbf60b
commit
f245d3399f
|
@ -20,9 +20,6 @@
|
|||
# catpuccin theme
|
||||
catppuccin.url = "github:catppuccin/nix";
|
||||
|
||||
# catpuccin flakehub for vscode
|
||||
catppuccin-vsc.url = "https://flakehub.com/f/catppuccin/vscode/*.tar.gz";
|
||||
|
||||
# Conduit fork without all the fuss and drama
|
||||
conduit = {
|
||||
url = "github:girlbossceo/conduwuit";
|
||||
|
|
|
@ -23,7 +23,6 @@
|
|||
nixpkgs = {
|
||||
# You can add overlays here
|
||||
overlays = [
|
||||
inputs.catppuccin-vsc.overlays.default
|
||||
# You can also add overlays exported from other flakes:
|
||||
# neovim-nightly-overlay.overlays.default
|
||||
|
||||
|
@ -33,6 +32,19 @@
|
|||
# patches = [ ./change-hello-to-hi.patch ];
|
||||
# });
|
||||
# })
|
||||
(final: prev: {
|
||||
catppuccin-vsc = final.catppuccin-vsc.overrideAttrs (oldAttrs: {
|
||||
accent = "lavender";
|
||||
boldKeywords = true;
|
||||
italicComments = true;
|
||||
italicKeywords = true;
|
||||
extraBordersEnabled = false;
|
||||
workbenchMode = "default";
|
||||
bracketMode = "rainbow";
|
||||
colorOverrides = {};
|
||||
customUIColors = {};
|
||||
});
|
||||
})
|
||||
];
|
||||
# Configure your nixpkgs instance
|
||||
config = {
|
||||
|
@ -91,8 +103,8 @@
|
|||
# Theming:
|
||||
catppuccin-cursors
|
||||
(catppuccin-kde.override {
|
||||
flavour = "macchiato";
|
||||
accents = "lavender";
|
||||
flavour = ["macchiato"];
|
||||
accents = ["lavender"];
|
||||
})
|
||||
catppuccin-sddm-corners
|
||||
|
||||
|
@ -107,17 +119,7 @@
|
|||
extensions = with pkgs.vscode-extensions; [
|
||||
#arrterian.nix-env-selector
|
||||
#ban.spellright
|
||||
(catppuccin-vsc.override {
|
||||
accent = "lavender";
|
||||
boldKeywords = true;
|
||||
italicComments = true;
|
||||
italicKeywords = true;
|
||||
extraBordersEnabled = false;
|
||||
workbenchMode = "default";
|
||||
bracketMode = "rainbow";
|
||||
colorOverrides = {};
|
||||
customUIColors = {};
|
||||
})
|
||||
catppuccin.catppuccin-vsc
|
||||
catppuccin.catppuccin-vsc-icons
|
||||
charliermarsh.ruff
|
||||
# dracula-theme.theme-dracula
|
||||
|
|
Loading…
Reference in a new issue