From 229379fc5573cb3b490cdc9782b91cc80313b484 Mon Sep 17 00:00:00 2001 From: Leon Vatthauer Date: Fri, 30 Aug 2024 21:10:54 +0200 Subject: [PATCH] remove themes --- gunther/configuration.nix | 21 ++++++------ gunther/leonv.nix | 67 +++++++++++++++++++++------------------ 2 files changed, 48 insertions(+), 40 deletions(-) diff --git a/gunther/configuration.nix b/gunther/configuration.nix index 401b58c..d19cde0 100755 --- a/gunther/configuration.nix +++ b/gunther/configuration.nix @@ -124,14 +124,15 @@ # List packages installed in system profile. environment.systemPackages = with pkgs; - let - catp-gtk = pkgs.catppuccin-gtk.override { - accents = [ "flamingo" ]; # You can specify multiple accents here to output multiple themes - size = "compact"; - tweaks = [ "rimless" "black" ]; # You can also specify multiple tweaks here - variant = "macchiato"; - }; - in [ + # let + # catp-gtk = pkgs.catppuccin-gtk.override { + # accents = [ "flamingo" ]; # You can specify multiple accents here to output multiple themes + # size = "compact"; + # tweaks = [ "rimless" "black" ]; # You can also specify multiple tweaks here + # variant = "macchiato"; + # }; + # in + [ # for connecting to nas nfs-utils @@ -144,7 +145,7 @@ # greeter greetd.gtkgreet - catp-gtk + # catp-gtk # deps for hyprland / eww socat @@ -173,7 +174,7 @@ ## disable logging when direnv changes DIRENV_LOG_FORMAT = []; # GTK theme (set here for greetd) - GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; + # GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; }; # fonts diff --git a/gunther/leonv.nix b/gunther/leonv.nix index 5529c53..567a0e8 100755 --- a/gunther/leonv.nix +++ b/gunther/leonv.nix @@ -132,43 +132,50 @@ oh-my-zsh.enable = true; }; - gtk = { - enable = true; - theme = { - name = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; - package = pkgs.catppuccin-gtk.override { - accents = [ "flamingo" ]; - size = "compact"; - tweaks = [ "rimless" "black" ]; - variant = "macchiato"; - }; - }; - iconTheme = { - name = "Dracula"; - package = pkgs.dracula-icon-theme; - }; - font = { - name = "NotoSans Nerd Font"; - }; - gtk3 = { - extraConfig.gtk-application-prefer-dark-theme = true; - }; - }; - home.sessionVariables.GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; + # gtk = { + # enable = true; + # theme = { + # name = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; + # package = pkgs.catppuccin-gtk.override { + # accents = [ "flamingo" ]; + # size = "compact"; + # tweaks = [ "rimless" "black" ]; + # variant = "macchiato"; + # }; + # }; + # iconTheme = { + # name = "Dracula"; + # package = pkgs.dracula-icon-theme; + # }; + # font = { + # name = "NotoSans Nerd Font"; + # }; + # gtk3 = { + # extraConfig.gtk-application-prefer-dark-theme = true; + # }; + # }; + # home.sessionVariables.GTK_THEME = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; home.sessionPath = [ "$HOME/.config/emacs/bin" ]; + home.pointerCursor = { + gtk.enable = true; + package = pkgs.bibata-cursors; + name = "Bibata-Modern-Classic"; + size = 24; + }; + services.syncthing = { enable = true; }; - dconf.settings = { - # GTK4 Setup - "org/gnome/desktop/interface" = { - gtk-theme = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; - color-scheme = "prefer-dark"; - }; - }; + # dconf.settings = { + # # GTK4 Setup + # "org/gnome/desktop/interface" = { + # gtk-theme = "Catppuccin-Macchiato-Compact-Flamingo-Dark"; + # color-scheme = "prefer-dark"; + # }; + # }; services.mpris-proxy.enable = true; }