Files
nix-config/homeConfigs/global/appearance.nix
tomoron b9ba959482
All checks were successful
update the nix flake lock automatically every week / update (push) Successful in 36s
add hosts on laptop, catppuccin autoenable config
2026-05-31 15:40:48 +02:00

36 lines
751 B
Nix

{ lib, pkgs, config, ... }:
{
catppuccin = {
enable = true;
autoEnable = true;
flavor = "mocha";
dunst.enable = true;
dunst.flavor="frappe";
kvantum.apply = true;
rofi.enable = false;
};
gtk = {
gtk4.theme = config.gtk.theme;
enable = true;
theme = { package = pkgs.flat-remix-gtk; name = "Flat-Remix-GTK-Grey-Darkest"; };
font = { name = "Sans"; size = 11; };
};
qt.style.name = "kvantum";
home.pointerCursor = {
gtk.enable = true;
package = pkgs.bibata-cursors;
name = "Bibata-Modern-Classic";
size = 16;
};
home.file = {
".config/wallpaper.png".source = lib.mkDefault ../utils/wallpaper.png;
".config/lock_screen.jpg".source = lib.mkDefault ../utils/lock_screen.jpg;
};
}