❄️ Nix configurations
at v2 27 lines 669 B view raw
1{ pkgs, config, ... }: 2{ 3 programs.vscode = { 4 enable = true; 5 profiles.default = { 6 extensions = with pkgs.vscode-extensions; [ 7 catppuccin.catppuccin-vsc 8 catppuccin.catppuccin-vsc-icons 9 bradlc.vscode-tailwindcss 10 jnoortheen.nix-ide 11 prisma.prisma 12 batisteo.vscode-django 13 oderwat.indent-rainbow 14 supermaven.supermaven 15 mkhl.direnv 16 golang.go 17 ]; 18 19 userSettings = { 20 "files.autoSave" = "off"; 21 "[nix]"."editor.tabSize" = 2; 22 "workbench.colorTheme" = "Catppuccin Macchiato"; 23 "workbench.iconTheme" = "catppuccin-macchiato"; 24 }; 25 }; 26 }; 27}