this repo has no description
1
fork

Configure Feed

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

fortree/home: manually add vscode catppuccin theme

authored by

Aly Raffauf and committed by
Aly Raffauf
c7dd8b9f 40d006ac

+13
+13
hosts/fortree/home.nix
··· 2 2 home-manager.users.aly = { 3 3 config, 4 4 lib, 5 + pkgs, 5 6 ... 6 7 }: { 7 8 imports = [ ··· 18 19 19 20 home.stateVersion = "25.05"; 20 21 launchd.agents.syncthing.config.EnvironmentVariables.HOME = config.home.homeDirectory; 22 + 23 + programs.vscode.profiles.default = { 24 + extensions = [ 25 + pkgs.vscode-extensions.catppuccin.catppuccin-vsc 26 + pkgs.vscode-extensions.catppuccin.catppuccin-vsc-icons 27 + ]; 28 + 29 + userSettings = { 30 + "workbench.colorTheme" = "Catppuccin Macchiato"; 31 + "workbench.iconTheme" = "catppuccin-macchiato"; 32 + }; 33 + }; 21 34 22 35 services.syncthing = let 23 36 inherit (config.mySnippets.syncthing) devices;