fix(gui): cleaner defaults
This commit is contained in:
parent
395b28609c
commit
49fe8142ad
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
};
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue