Compare commits

...

2 Commits

Author SHA1 Message Date
07f4fb59ab
Fix renamed vscode options
All checks were successful
Run nix flake check / flake-check (push) Successful in 2m13s
Periodic flake update / flake-update (push) Successful in 1m17s
2025-02-23 18:38:11 +01:00
d203b65c87
Use pamixer from stable due to build failure 2025-02-23 18:36:13 +01:00
2 changed files with 16 additions and 14 deletions

View File

@ -65,7 +65,7 @@ in
krita krita
mpv mpv
mumble mumble
pamixer (lib.warn "pamixer from stable until 383900" stable.pamixer)
rofi-rbw-wayland rofi-rbw-wayland
spicetify-cli spicetify-cli
spotify spotify

View File

@ -2,19 +2,21 @@
{ {
programs.vscode = { programs.vscode = {
enable = true; enable = true;
enableUpdateCheck = true; profiles.default = {
enableExtensionUpdateCheck = true; enableUpdateCheck = true;
extensions = with pkgs.vscode-extensions; [ enableExtensionUpdateCheck = true;
catppuccin.catppuccin-vsc userSettings = {
catppuccin.catppuccin-vsc-icons "window.titleBarStyle" = "custom";
golang.go };
vscodevim.vim extensions = with pkgs.vscode-extensions; [
ms-python.python catppuccin.catppuccin-vsc
ms-vscode-remote.remote-ssh catppuccin.catppuccin-vsc-icons
bbenoist.nix golang.go
]; vscodevim.vim
userSettings = { ms-python.python
"window.titleBarStyle" = "custom"; ms-vscode-remote.remote-ssh
bbenoist.nix
];
}; };
}; };
} }