remove themes

This commit is contained in:
Leon Vatthauer 2024-08-30 21:10:54 +02:00
parent 75aff2610c
commit 229379fc55
Signed by: leonv
SSH key fingerprint: SHA256:G4+ddwoZmhLPRB1agvXzZMXIzkVJ36dUYZXf5NxT+u8
2 changed files with 48 additions and 40 deletions

View file

@ -124,14 +124,15 @@
# List packages installed in system profile. # List packages installed in system profile.
environment.systemPackages = environment.systemPackages =
with pkgs; with pkgs;
let # let
catp-gtk = pkgs.catppuccin-gtk.override { # catp-gtk = pkgs.catppuccin-gtk.override {
accents = [ "flamingo" ]; # You can specify multiple accents here to output multiple themes # accents = [ "flamingo" ]; # You can specify multiple accents here to output multiple themes
size = "compact"; # size = "compact";
tweaks = [ "rimless" "black" ]; # You can also specify multiple tweaks here # tweaks = [ "rimless" "black" ]; # You can also specify multiple tweaks here
variant = "macchiato"; # variant = "macchiato";
}; # };
in [ # in
[
# for connecting to nas # for connecting to nas
nfs-utils nfs-utils
@ -144,7 +145,7 @@
# greeter # greeter
greetd.gtkgreet greetd.gtkgreet
catp-gtk # catp-gtk
# deps for hyprland / eww # deps for hyprland / eww
socat socat
@ -173,7 +174,7 @@
## disable logging when direnv changes ## disable logging when direnv changes
DIRENV_LOG_FORMAT = []; DIRENV_LOG_FORMAT = [];
# GTK theme (set here for greetd) # GTK theme (set here for greetd)
GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; # GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
}; };
# fonts # fonts

View file

@ -132,43 +132,50 @@
oh-my-zsh.enable = true; oh-my-zsh.enable = true;
}; };
gtk = { # gtk = {
enable = true; # enable = true;
theme = { # theme = {
name = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; # name = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
package = pkgs.catppuccin-gtk.override { # package = pkgs.catppuccin-gtk.override {
accents = [ "flamingo" ]; # accents = [ "flamingo" ];
size = "compact"; # size = "compact";
tweaks = [ "rimless" "black" ]; # tweaks = [ "rimless" "black" ];
variant = "macchiato"; # variant = "macchiato";
}; # };
}; # };
iconTheme = { # iconTheme = {
name = "Dracula"; # name = "Dracula";
package = pkgs.dracula-icon-theme; # package = pkgs.dracula-icon-theme;
}; # };
font = { # font = {
name = "NotoSans Nerd Font"; # name = "NotoSans Nerd Font";
}; # };
gtk3 = { # gtk3 = {
extraConfig.gtk-application-prefer-dark-theme = true; # extraConfig.gtk-application-prefer-dark-theme = true;
}; # };
}; # };
home.sessionVariables.GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; # home.sessionVariables.GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
home.sessionPath = [ "$HOME/.config/emacs/bin" ]; home.sessionPath = [ "$HOME/.config/emacs/bin" ];
home.pointerCursor = {
gtk.enable = true;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 24;
};
services.syncthing = { services.syncthing = {
enable = true; enable = true;
}; };
dconf.settings = { # dconf.settings = {
# GTK4 Setup # # GTK4 Setup
"org/gnome/desktop/interface" = { # "org/gnome/desktop/interface" = {
gtk-theme = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; # gtk-theme = "Catppuccin-Macchiato-Compact-Flamingo-Dark";
color-scheme = "prefer-dark"; # color-scheme = "prefer-dark";
}; # };
}; # };
services.mpris-proxy.enable = true; services.mpris-proxy.enable = true;
} }