fix(gui): cleaner defaults

This commit is contained in:
514fpv 2024-05-13 08:38:38 +08:00
parent 395b28609c
commit 49fe8142ad
Signed by: koishi
SSH key fingerprint: SHA256:axz0uIzzY+5W19i7QOUuiw5LSqhKfCBKPf3L4xFRxLw
2 changed files with 12 additions and 11 deletions

View file

@ -6,22 +6,22 @@
config = mkIf config.passthrough.gui {
# cursor theme
home.pointerCursor = {
package = mkDefault pkgs.bibata-cursors;
name = mkDefault "Bibata-Modern-Classic";
home.pointerCursor = mkDefault {
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 24;
};
# gtk theme
gtk.theme = {
package = mkDefault pkgs.whitesur-gtk-theme;
name = mkDefault "WhiteSur-Dark";
gtk.theme = mkDefault {
package = pkgs.whitesur-gtk-theme;
name = "WhiteSur-Dark";
};
# gtk icons
gtk.iconTheme = {
package = mkDefault pkgs.papirus-icon-theme;
name = mkDefault "Papirus-Dark";
gtk.iconTheme = mkDefault {
package = pkgs.papirus-icon-theme;
name = "Papirus-Dark";
};
# unify qt theme

View file

@ -3,6 +3,7 @@
, config
, ... }: with lib; let
cfg = config.passthrough.vscode;
theme = config.passthrough.catppuccin.enable;
in mkIf cfg.enable {
programs.vscode = {
enable = true;
@ -15,8 +16,8 @@ in mkIf cfg.enable {
bbenoist.nix golang.go rust-lang.rust-analyzer
];
userSettings = {
"workbench.colorTheme" = "Catppuccin Frappé";
"workbench.iconTheme" = "catppuccin-frappe";
"workbench.colorTheme" = mkIf theme "Catppuccin Frappé";
"workbench.iconTheme" = mkIf theme "catppuccin-frappe";
"[nix]"."editor.tabSize" = 2;
};
};