Basic theming.
This commit is contained in:
parent
f1df19ed9b
commit
412dee6d0b
@ -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
|
||||||
];
|
];
|
||||||
|
|
||||||
|
|
||||||
|
30
home-manager/modules/theming.nix
Normal file
30
home-manager/modules/theming.nix
Normal 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;
|
||||||
|
}
|
@ -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
|
||||||
|
Loading…
Reference in New Issue
Block a user