Added catppuccin/nix

This commit is contained in:
2025-10-19 11:33:12 -04:00
parent 6febc0906b
commit aea83699b8
7 changed files with 57 additions and 5 deletions

View File

@@ -0,0 +1,14 @@
{
inputs,
...
}:
{
imports = [
inputs.catppuccin.homeModules.catppuccin
];
catppuccin = {
accent = "flamingo";
flavor = "mocha";
};
}

View File

@@ -3,6 +3,7 @@
}:
{
imports = [
./catppuccin.nix
./firefox.nix
./git.nix
./nvf.nix

View File

@@ -15,10 +15,6 @@
targets = {
kde.enable = true;
lazygit.enable = true;
vscode = {
enable = true;
profileNames = [ "default" ];
};
};
};
}

View File

@@ -17,6 +17,7 @@
aaron-bond.better-comments
yzane.markdown-pdf
mechatroner.rainbow-csv
catppuccin.catppuccin-vsc
# Remote development
ms-vscode-remote.remote-ssh
@@ -46,6 +47,8 @@
# General
"editor.formatOnSave" = true;
"workbench.iconTheme" = "material-icon-theme";
"workbench.colorTheme" = "Catppuccin Mocha";
"catppuccin.accentColor" = "flamingo";
# Prettier
"editor.defaultFormatter" = "esbenp.prettier-vscode";