mirror of
https://gitlab.com/upRootNutrition/dotfiles.git
synced 2025-06-15 17:45:12 -05:00
50 lines
1.2 KiB
Nix
Executable file
50 lines
1.2 KiB
Nix
Executable file
{
|
|
pkgs,
|
|
flake,
|
|
lib,
|
|
...
|
|
}:
|
|
let
|
|
inherit (flake.config.aesthetics.themes)
|
|
font
|
|
;
|
|
in
|
|
{
|
|
programs.regreet = {
|
|
enable = true;
|
|
package = pkgs.greetd.regreet;
|
|
# settings = {
|
|
# appearance = {
|
|
# greeting_msg = "Back for more, I see.";
|
|
# };
|
|
# GTK = {
|
|
# application_prefer_dark_theme = true;
|
|
# cursor_theme_name = lib.mkForce "catppuccin-macchiato-dark-cursors";
|
|
# font_name = lib.mkForce "${font.name} ${font.size.desktop}";
|
|
# icon_theme_name = lib.mkForce "Papirus-Dark";
|
|
# theme_name = lib.mkForce "catppuccin-macchiato-mauve-compact";
|
|
# };
|
|
# };
|
|
# theme = {
|
|
# name = "catppuccin-macchiato-mauve-compact";
|
|
# package = pkgs.catppuccin-gtk.override {
|
|
# size = "compact";
|
|
# variant = "macchiato";
|
|
# accents = [
|
|
# "mauve"
|
|
# ];
|
|
# };
|
|
# };
|
|
# cursorTheme = {
|
|
# name = "catppuccin-macchiato-dark-cursors";
|
|
# package = pkgs.catppuccin-cursors.macchiatoDark;
|
|
# };
|
|
# iconTheme = {
|
|
# name = "Papirus-Dark";
|
|
# package = pkgs.catppuccin-papirus-folders.override {
|
|
# flavor = "macchiato";
|
|
# accent = "mauve";
|
|
# };
|
|
# };
|
|
};
|
|
}
|