❄️ Nix configurations
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

fix vscode

Alex Ottr d93feabb 2e3c8c7f

+29
+1
hosts/otter/configuration.nix
··· 99 99 # List packages installed in system profile. To search, run: 100 100 # $ nix search wget 101 101 environment.systemPackages = with pkgs; [ 102 + git 102 103 curl 103 104 ]; 104 105
+4
hosts/otter/home.nix
··· 5 5 home.homeDirectory = "/home/alex"; 6 6 home.stateVersion = "25.05"; 7 7 8 + imports = [ 9 + ../../modules/home-manager/vscode.nix 10 + ]; 11 + 8 12 home.packages = []; 9 13 10 14 # plain files is through 'home.file'.
+24
modules/home-manager/vscode.nix
··· 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 + ]; 15 + 16 + userSettings = { 17 + "files.autoSave" = "off"; 18 + "[nix]"."editor.tabSize" = 2; 19 + "workbench.colorTheme" = "Catppuccin Macchiato"; 20 + "workbench.iconTheme" = "catppuccin-macchiato"; 21 + }; 22 + }; 23 + }; 24 + }