Basic theming.

This commit is contained in:
CronyAkatsuki 2024-02-15 10:39:46 +01:00
parent f1df19ed9b
commit 412dee6d0b
3 changed files with 34 additions and 3 deletions

View File

@ -21,6 +21,7 @@
./modules/shell.nix ./modules/shell.nix
./modules/nvim.nix ./modules/nvim.nix
./modules/restic.nix ./modules/restic.nix
./modules/theming.nix
]; ];

View File

@ -0,0 +1,30 @@
{ pkgs, ... }:
{
# Enable qt
qt.enable = true;
# Use gtk platform theme
qt.platformTheme = "gtk";
# Use gtk2 style
qt.style.name = "gtk2";
# Enable gtk
gtk.enable = true;
# Gtk cursor theme
gtk.cursorTheme.package = pkgs.catppuccin-cursors.frappeRosewater;
gtk.cursorTheme.name = "Catppuccin-Frappe-Rosewater-Cursors";
# Gtk look theme
gtk.theme.package = pkgs.catppuccin-gtk;
gtk.theme.name = "Catppuccin-Frappe-Standard-Blue-Dark";
# Gtk icon theme
gtk.iconTheme.package = (pkgs.catppuccin-papirus-folders.override { flavor = "frappe"; accent = "pink"; });
gtk.iconTheme.name = "Papirus-Dark";
# Font name
gtk.font.name = "Noto Sans";
gtk.font.size = 10;
}

View File

@ -140,10 +140,10 @@
ipafont ipafont
ryzenadj ryzenadj
(catppuccin-kde.override { winDecStyles = ["classic" "modern"] ;}) (catppuccin-kde.override { winDecStyles = ["classic" "modern"] ;})
catppuccin-gtk # catppuccin-gtk
catppuccin-cursors.frappeRosewater # catppuccin-cursors.frappeRosewater
catppuccin-sddm-corners catppuccin-sddm-corners
(catppuccin-papirus-folders.override { flavor = "frappe"; accent = "pink"; }) # (catppuccin-papirus-folders.override { flavor = "frappe"; accent = "pink"; })
]; ];
# Wireguard settings # Wireguard settings