Declaratively configure vscodium, add acpi to laptop
This commit is contained in:
parent
07c561e996
commit
0b4d3254cd
1 changed files with 18 additions and 0 deletions
18
home.nix
18
home.nix
|
@ -42,6 +42,24 @@
|
||||||
];
|
];
|
||||||
services.syncthing.enable = true;
|
services.syncthing.enable = true;
|
||||||
|
|
||||||
|
programs.vscode = {
|
||||||
|
package = pkgs.vscodium;
|
||||||
|
extensions = [
|
||||||
|
pkgs.vscode-extensions.catppuccin.catppuccin-vsc
|
||||||
|
pkgs.vscode-extensions.catppuccin.catppuccin-vsc-icons
|
||||||
|
pkgs.vscode-extensions.ms-python.python
|
||||||
|
pkgs.vscode-extensions.ms-python.vscode-pylance
|
||||||
|
pkgs.vscode-extensions.jnoortheen.nix-ide
|
||||||
|
];
|
||||||
|
userSettings = {
|
||||||
|
"workbench.colorTheme" = "Catppuccin Frappé";
|
||||||
|
"workbench.iconTheme" = "catppuccin-frappe";
|
||||||
|
"git.enableSmartCommit" = true;
|
||||||
|
"editor.fontFamily" = "'Monocraft Nerd Font'";
|
||||||
|
"editor.fontSize" = 16;
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
gtk = {
|
gtk = {
|
||||||
enable = true;
|
enable = true;
|
||||||
iconTheme = {
|
iconTheme = {
|
||||||
|
|
Loading…
Reference in a new issue