rice tweaks

This commit is contained in:
Satria 2026-02-18 21:20:02 +07:00
commit 9cd171ba1a
2 changed files with 16 additions and 5 deletions

View file

@ -5,8 +5,8 @@
wayland.windowManager.hyprland = { wayland.windowManager.hyprland = {
enable = true; enable = true;
systemd.enable = false;
package = pkgs.hyprland; # inputs.hl.packages."${pkgs.system}".hyprland; package = pkgs.hyprland; # inputs.hl.packages."${pkgs.system}".hyprland;
systemd.enable = false;
xwayland.enable = true; xwayland.enable = true;
settings = { settings = {
debug = { debug = {

View file

@ -1,10 +1,10 @@
{ lib, pkgs, ctp-opt, ... }: { { lib, pkgs, ctp-opt, rice, ... }: {
catppuccin = { catppuccin = {
enable = true;
hyprlock.useDefaultConfig = false; hyprlock.useDefaultConfig = false;
hyprland.accent = ctp-opt.primary;
flavor = ctp-opt.flavor; flavor = ctp-opt.flavor;
accent = ctp-opt.accent; accent = ctp-opt.accent;
enable = true;
}; };
dconf = { dconf = {
@ -38,5 +38,16 @@
accent = ctp-opt.accent; accent = ctp-opt.accent;
}; };
}; };
qt6ctSettings = {
Appearance = {
style = "kvantum";
icon_theme = "Papirus-Dark";
standar_dialogs = "xdgdesktopportal";
};
Fonts = {
fixed = "${rice.font},12";
general = "${rice.font},12";
};
};
}; };
} }